diff options
author | Steven Knight <knight@baldmt.com> | 2002-10-03 21:01:02 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-10-03 21:01:02 (GMT) |
commit | 313be3374d81ff22c10b8ec09c465cabd835062f (patch) | |
tree | 9385dedc5fcd031f98ebd15791c5c15c62303144 /test/option--debug.py | |
parent | dffe09bd431aeeb996ad14763154abe5c412b93e (diff) | |
download | SCons-313be3374d81ff22c10b8ec09c465cabd835062f.zip SCons-313be3374d81ff22c10b8ec09c465cabd835062f.tar.gz SCons-313be3374d81ff22c10b8ec09c465cabd835062f.tar.bz2 |
Add MSVC PCH and PDB support. (Anthony Roach)
Diffstat (limited to 'test/option--debug.py')
-rw-r--r-- | test/option--debug.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/option--debug.py b/test/option--debug.py index 6561a05..d70cfc9 100644 --- a/test/option--debug.py +++ b/test/option--debug.py @@ -121,7 +121,7 @@ tree = """scons: \".\" is up to date. +-foo.h """ test.run(arguments = "--debug=tree .") -test.fail_test(string.find(test.stdout(), tree) != 0) +test.fail_test(string.find(test.stdout(), tree) == -1) test.run(arguments = "--debug=pdb", stdin = "n\ns\nq\n") test.fail_test(string.find(test.stdout(), "(Pdb)") == -1) |