diff options
| -rwxr-xr-x | tools/run-jdwp-tests.sh | 3 | ||||
| -rwxr-xr-x | tools/run-libcore-tests.sh | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/tools/run-jdwp-tests.sh b/tools/run-jdwp-tests.sh index 3e5a1c0959..976e1d8817 100755 --- a/tools/run-jdwp-tests.sh +++ b/tools/run-jdwp-tests.sh @@ -24,7 +24,7 @@ test_jack=${OUT_DIR-out}/host/common/obj/JAVA_LIBRARIES/apache-harmony-jdwp-test if [ ! -f $test_jack ]; then echo "Before running, you must build jdwp tests and vogar:" \ - "make apache-harmony-jdwp-tests-hostdex vogar vogar.jar" + "make apache-harmony-jdwp-tests-hostdex vogar" exit 1 fi @@ -122,7 +122,6 @@ vogar $vm_command \ $image_compiler_option \ --timeout 800 \ --vm-arg -Djpda.settings.verbose=true \ - --vm-arg -Djpda.settings.syncPort=34016 \ --vm-arg -Djpda.settings.transportAddress=127.0.0.1:55107 \ --vm-arg -Djpda.settings.debuggeeJavaPath="$art_debugee $image $debuggee_args" \ --classpath $test_jack \ diff --git a/tools/run-libcore-tests.sh b/tools/run-libcore-tests.sh index d9905f3f55..3e2a512355 100755 --- a/tools/run-libcore-tests.sh +++ b/tools/run-libcore-tests.sh @@ -28,7 +28,7 @@ test_jack=${OUT_DIR-out}/target/common/obj/JAVA_LIBRARIES/core-tests_intermediat if [ ! -f $test_jack ]; then echo "Before running, you must build core-tests, jsr166-tests and vogar: \ - make core-tests jsr166-tests vogar vogar.jar" + make core-tests jsr166-tests vogar" exit 1 fi |