summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-04-19 04:03:33 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2017-04-19 04:03:33 (GMT)
commit18f73fb6ea41b50710dc40c10d6bf4ba9af7a02e (patch)
tree2ca0cc7560bc86f58f4a9ea2e52615f367815ed0 /test
parentc8bbcb0d9b5d03a84e880d239857008b93eda8fe (diff)
parenta72dc1246c42d37e35fc7838c4bc22298a5a3c0a (diff)
downloadSCons-18f73fb6ea41b50710dc40c10d6bf4ba9af7a02e.zip
SCons-18f73fb6ea41b50710dc40c10d6bf4ba9af7a02e.tar.gz
SCons-18f73fb6ea41b50710dc40c10d6bf4ba9af7a02e.tar.bz2
py2/3 Fix re-raising stored exception. Previously we were dropping contents of Exception. Plus merge more complete removal of sccs and rcs source handling per deprecation/removal.
Diffstat (limited to 'test')
-rw-r--r--test/diskcheck.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/diskcheck.py b/test/diskcheck.py
index adbeea1..36cfa4e 100644
--- a/test/diskcheck.py
+++ b/test/diskcheck.py
@@ -52,30 +52,6 @@ test.must_contain_all_lines(test.stderr(), ["found where file expected"])
-test.write('SConstruct', """
-SetOption('diskcheck', ['rcs', 'sccs'])
-Dir('file')
-""")
-
-test.run()
-
-test.run(arguments='--diskcheck=match', status=2, stderr=None)
-test.must_contain_all_lines(test.stderr(), ["found where directory expected"])
-
-
-
-test.write('SConstruct', """
-SetOption('diskcheck', 'rcs,sccs')
-Dir('file/subdir')
-""")
-
-test.run()
-
-test.run(arguments='--diskcheck=match', status=2, stderr=None)
-test.must_contain_all_lines(test.stderr(), ["found where directory expected"])
-
-
-
test.pass_test()
# Local Variables: