8212212: (bf) Incorrect path to stream preprocessor source in java.nio Buffer test scripts
authorbpb
Tue, 16 Oct 2018 07:49:08 -0700
changeset 52147 435467bce14e
parent 52146 032c1c1379ab
child 52148 2d9f8845d0ae
8212212: (bf) Incorrect path to stream preprocessor source in java.nio Buffer test scripts Reviewed-by: alanb
test/jdk/java/nio/Buffer/genBasic.sh
test/jdk/java/nio/Buffer/genCopyDirectMemory.sh
test/jdk/java/nio/Buffer/genOrder.sh
--- a/test/jdk/java/nio/Buffer/genBasic.sh	Tue Oct 16 09:55:30 2018 -0400
+++ b/test/jdk/java/nio/Buffer/genBasic.sh	Tue Oct 16 07:49:08 2018 -0700
@@ -1,7 +1,7 @@
 #! /bin/sh
 
 #
-# Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 #
 # This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,7 @@
 # questions.
 #
 
-javac -d . ../../../../make/src/classes/build/tools/spp/Spp.java
+javac -d . ../../../../../make/jdk/src/classes/build/tools/spp/Spp.java
 
 gen() {
     java build.tools.spp.Spp -K$1 -Dtype=$1 -DType=$2 -DFulltype=$3 <Basic-X.java.template >Basic$2.java
--- a/test/jdk/java/nio/Buffer/genCopyDirectMemory.sh	Tue Oct 16 09:55:30 2018 -0400
+++ b/test/jdk/java/nio/Buffer/genCopyDirectMemory.sh	Tue Oct 16 07:49:08 2018 -0700
@@ -1,7 +1,7 @@
 #! /bin/sh
 
 #
-# Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 #
 # This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,7 @@
 # questions.
 #
 
-javac -d . ../../../../make/src/classes/build/tools/spp/Spp.java > Spp.java
+javac -d . ../../../../../make/jdk/src/classes/build/tools/spp/Spp.java > Spp.java
 
 gen() {
     java  build.tools.spp.Spp -K$1 -Dtype=$1 -DType=$2 -DFulltype=$3<CopyDirect-X-Memory.java.template >CopyDirect$2Memory.java
--- a/test/jdk/java/nio/Buffer/genOrder.sh	Tue Oct 16 09:55:30 2018 -0400
+++ b/test/jdk/java/nio/Buffer/genOrder.sh	Tue Oct 16 07:49:08 2018 -0700
@@ -1,7 +1,7 @@
 #! /bin/sh
 
 #
-# Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 #
 # This code is free software; you can redistribute it and/or modify it
@@ -23,8 +23,7 @@
 # questions.
 #
 
-javac -d . ../../../../make/src/classes/build/tools/spp/Spp.java > Spp.java
-
+javac -d . ../../../../../make/jdk/src/classes/build/tools/spp/Spp.java > Spp.java
 gen() {
     java  build.tools.spp.Spp -K$1 -Dtype=$1 -DType=$2 -DFulltype=$3<Order-X.java.template >Order$2.java
 }