summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2018-10-01 01:07:19 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2018-10-01 01:07:19 (GMT)
commit5c359ce6d9682a8d4fd10fda711c2d9e74b14eb9 (patch)
treec42869fcf7b9ad0ae5ab267994950bc0a9d37f3c /test
parentb257b48fe5c7006efca86e323836f6b73cb5c359 (diff)
downloadSCons-5c359ce6d9682a8d4fd10fda711c2d9e74b14eb9.zip
SCons-5c359ce6d9682a8d4fd10fda711c2d9e74b14eb9.tar.gz
SCons-5c359ce6d9682a8d4fd10fda711c2d9e74b14eb9.tar.bz2
Fix missing -c in testcase
Diffstat (limited to 'test')
-rw-r--r--test/Java/Java-1.6.py4
-rw-r--r--test/Java/Java-1.8.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/test/Java/Java-1.6.py b/test/Java/Java-1.6.py
index 15534b0..cd92b95 100644
--- a/test/Java/Java-1.6.py
+++ b/test/Java/Java-1.6.py
@@ -126,8 +126,8 @@ test.fail_test(failed)
test.up_to_date(options=["--debug=explain"]+java_arguments,
arguments = '.')
-test.run(arguments = ['.']+java_arguments)
-\
+test.run(arguments = ['-c','.']+java_arguments)
+
classes_must_not_exist('class1', expect_1)
classes_must_not_exist('class2', expect_2)
classes_must_not_exist('class3', expect_3)
diff --git a/test/Java/Java-1.8.py b/test/Java/Java-1.8.py
index 4ac85ca..cb28515 100644
--- a/test/Java/Java-1.8.py
+++ b/test/Java/Java-1.8.py
@@ -126,8 +126,8 @@ test.fail_test(failed)
test.up_to_date(options=["--debug=explain"]+java_arguments,
arguments = '.')
-test.run(arguments = ['.']+java_arguments)
-\
+test.run(arguments = ['-c','.']+java_arguments)
+
classes_must_not_exist('class1', expect_1)
classes_must_not_exist('class2', expect_2)
classes_must_not_exist('class3', expect_3)