aboutsummaryrefslogtreecommitdiff
path: root/test/tools
diff options
context:
space:
mode:
authorrobm <none@none>2016-06-28 20:03:29 +0100
committerrobm <none@none>2016-06-28 20:03:29 +0100
commitd7aca14bf01b686b0421649280bac07f04ca5aa1 (patch)
tree64925d9b79f94e34696046662cbc48946b794ba6 /test/tools
parent054a722a093ab6ef42d202d4d7141ce4becdf868 (diff)
downloadjdk8u_jdk-d7aca14bf01b686b0421649280bac07f04ca5aa1.tar.gz
8143640: Showing incorrect result while passing specific argument in the Java launcher tools
Reviewed-by: ksrini
Diffstat (limited to 'test/tools')
-rw-r--r--test/tools/launcher/Arrrghs.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/tools/launcher/Arrrghs.java b/test/tools/launcher/Arrrghs.java
index 89893e4b6d..73d868947e 100644
--- a/test/tools/launcher/Arrrghs.java
+++ b/test/tools/launcher/Arrrghs.java
@@ -24,7 +24,7 @@
/**
* @test
* @bug 5030233 6214916 6356475 6571029 6684582 6742159 4459600 6758881 6753938
- * 6894719 6968053 7151434 7146424 8007333 8077822
+ * 6894719 6968053 7151434 7146424 8007333 8077822 8143640
* @summary Argument parsing validation.
* @compile -XDignore.symbol.file Arrrghs.java
* @run main/othervm Arrrghs
@@ -324,6 +324,8 @@ public class Arrrghs extends TestHelper {
// more treatment of mixed slashes
checkArgumentParsing("f1/ f3\\ f4/", "f1/", "f3\\", "f4/");
checkArgumentParsing("f1/ f2\' ' f3/ f4/", "f1/", "f2\'", "'", "f3/", "f4/");
+
+ checkArgumentParsing("a\\*\\b", "a\\*\\b");
}
private void initEmptyDir(File emptyDir) throws IOException {