diff options
author | Steven Knight <knight@baldmt.com> | 2009-12-15 06:35:05 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2009-12-15 06:35:05 (GMT) |
commit | 3771ce697111a708f23ca69c60ad4ca7bc1030e4 (patch) | |
tree | ca33cdc9e3374ef2ac6542edddec954568eb75ea /test/option--R.py | |
parent | 297837e8a1f6abf3c888c340a80a40107ac93ce3 (diff) | |
download | SCons-3771ce697111a708f23ca69c60ad4ca7bc1030e4.zip SCons-3771ce697111a708f23ca69c60ad4ca7bc1030e4.tar.gz SCons-3771ce697111a708f23ca69c60ad4ca7bc1030e4.tar.bz2 |
Add a TestSCons.option_not_yet_implemented() method and use it so
the tests of those options expect an exit status of 1.
Diffstat (limited to 'test/option--R.py')
-rw-r--r-- | test/option--R.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/test/option--R.py b/test/option--R.py index 5fecc67..3b66e28 100644 --- a/test/option--R.py +++ b/test/option--R.py @@ -30,14 +30,11 @@ test = TestSCons.TestSCons() test.write('SConstruct', "") -test.run(arguments = '-R .', - stderr = "Warning: the -R option is not yet implemented\n") +test.option_not_yet_implemented('-R', '.') -test.run(arguments = '--no-builtin-variables .', - stderr = "Warning: the --no-builtin-variables option is not yet implemented\n") +test.option_not_yet_implemented('--no-builtin-variables', '.') test.pass_test() - # Local Variables: # tab-width:4 |