summaryrefslogtreecommitdiffstats
path: root/test/diskcheck.py
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-04-18 04:43:30 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2017-04-18 04:43:30 (GMT)
commita72dc1246c42d37e35fc7838c4bc22298a5a3c0a (patch)
treece17eabd478273a7f28d90c37a97d37bcd394d13 /test/diskcheck.py
parent03013f4884c9727cf022fb6299ded8bf6f59e79a (diff)
downloadSCons-a72dc1246c42d37e35fc7838c4bc22298a5a3c0a.zip
SCons-a72dc1246c42d37e35fc7838c4bc22298a5a3c0a.tar.gz
SCons-a72dc1246c42d37e35fc7838c4bc22298a5a3c0a.tar.bz2
more removal of sccs and rcs builder logic
Diffstat (limited to 'test/diskcheck.py')
-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: