diff options
author | William Deegan <bill@baddogconsulting.com> | 2019-03-03 15:29:52 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2019-03-03 15:29:52 (GMT) |
commit | a6849f5629cbcc5a1c8693f398b9641cbc92208f (patch) | |
tree | 6a54f6dd251587ca266cfc8d4539b4822993a800 /test/Decider | |
parent | 5eb289aa0fa94582e6d688feaa5cb2b373a7056c (diff) | |
download | SCons-a6849f5629cbcc5a1c8693f398b9641cbc92208f.zip SCons-a6849f5629cbcc5a1c8693f398b9641cbc92208f.tar.gz SCons-a6849f5629cbcc5a1c8693f398b9641cbc92208f.tar.bz2 |
fix typo in skip_test
Diffstat (limited to 'test/Decider')
-rw-r--r-- | test/Decider/MD5-winonly-firstbuild.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Decider/MD5-winonly-firstbuild.py b/test/Decider/MD5-winonly-firstbuild.py index 4047ea8..1e1b51e 100644 --- a/test/Decider/MD5-winonly-firstbuild.py +++ b/test/Decider/MD5-winonly-firstbuild.py @@ -43,9 +43,9 @@ if IS_WINDOWS: lex = test.where_is('flex') or test.where_is('lex') or test.where_is('win_flex') # print("Lex:%s yacc:%s"%(lex,yacc)) if not yacc or not lex: - test.skip("On windows but no flex/lex/win_flex and yacc/bison/win_bison required for test") + test.skip_test("On windows but no flex/lex/win_flex and yacc/bison/win_bison required for test") else: - test.skip("Windows only test") + test.skip_test("Windows only test") test.dir_fixture('MD5-winonly-fixture') |