diff options
author | Marius Kintel <marius@kintel.net> | 2010-08-28 13:26:00 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2010-10-31 00:42:38 (GMT) |
commit | d172c353a2b8030ba0b7ca8d3ec6361ebaa2946f (patch) | |
tree | 9b0e554d54c563de719a487298d404846708a7a4 /tests/test_cmdline_tool.py | |
parent | f0b49ee9e93c92982fe9a160c3e9aa7da17b581e (diff) |
Test should fail if cmd is not found
Diffstat (limited to 'tests/test_cmdline_tool.py')
-rwxr-xr-x | tests/test_cmdline_tool.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_cmdline_tool.py b/tests/test_cmdline_tool.py index e841905..47983d9 100755 --- a/tests/test_cmdline_tool.py +++ b/tests/test_cmdline_tool.py @@ -80,6 +80,7 @@ def run_test(testname, cmd, args): return False except OSError, err: print >> sys.stderr, "Error: %s \"%s\"" % (err.strerror, cmd) + return False return True |