diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-09-22 21:45:38 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-09-22 21:45:38 (GMT) |
commit | c9f8b7bf6bbe6ad2e4b1289a2c47afd79d0c68c1 (patch) | |
tree | c7c364fb8ecc302a1c60146e53f0674e0e6936b6 /tests/echotest | |
parent | 40a198a0870d53f491ba72a95a57b9f405d031c0 (diff) | |
parent | 4ebd8136a83325e67be7a39c9349ec8812aa05c1 (diff) |
Merge branch 'issue480' of github.com:openscad/openscad into issue480
Conflicts:
tests/CMakeLists.txt
Diffstat (limited to 'tests/echotest')
-rwxr-xr-x | tests/echotest | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/echotest b/tests/echotest deleted file mode 100755 index a2302ff..0000000 --- a/tests/echotest +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env python - -import re, sys, subprocess - -result = subprocess.Popen([sys.argv[2], sys.argv[1], '-o', 'null'], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[1] -result = re.sub(r'-?[0-9].[0-9]*e-[0-9]{2,}', '0', result) - -open(sys.argv[3], 'w').write(result) |