diff options
author | don bright <hugh.m.bright@gmail.com> | 2011-12-07 06:36:33 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2011-12-07 06:36:33 (GMT) |
commit | 9a665075c9df74fd646ad187636bc242a9a8816c (patch) | |
tree | 17da2a181e9031bb5309aee32018d1fd86a2f807 /tests/test_cmdline_tool.py | |
parent | 462a4f4f44543d89be829eac6bb64a33854a4dd9 (diff) |
update FindBoost from cmake git. improve crash handling + boost finding
Diffstat (limited to 'tests/test_cmdline_tool.py')
-rwxr-xr-x | tests/test_cmdline_tool.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_cmdline_tool.py b/tests/test_cmdline_tool.py index dace3f5..848a6eb 100755 --- a/tests/test_cmdline_tool.py +++ b/tests/test_cmdline_tool.py @@ -26,6 +26,7 @@ import re import getopt import shutil import platform +import string def initialize_environment(): if not options.generate: options.generate = bool(os.getenv("TEST_GENERATE")) @@ -91,8 +92,7 @@ def compare_png(resultfilename): options.convert_exec = 'compare' compare_method = 'NCC' - msg = 'ImageMagick image comparison: ' - msg += os.path.basename(options.convert_exec) + ' ' + ' '.join(args) + msg = 'ImageMagick image comparison: ' + options.convert_exec + ' '+ ' '.join(args[2:]) msg += '\nexpected image: ' + expectedfilename + '\n' print >> sys.stderr, msg if not resultfilename: |