# HG changeset patch # User tpivovarova # Date 1442653416 -10800 # Node ID 71f9b0782023229d19114f219d896c577a11fd0b # Parent d8eed614f2985def452671d5a4033faec5b63e5c 8136693: add package statement 'compiler.testlibrary' to CompilerUtils Reviewed-by: iignatyev diff -r d8eed614f298 -r 71f9b0782023 hotspot/test/compiler/codecache/dtrace/SegmentedCodeCacheDtraceTest.java --- a/hotspot/test/compiler/codecache/dtrace/SegmentedCodeCacheDtraceTest.java Fri Sep 18 10:11:11 2015 +0200 +++ b/hotspot/test/compiler/codecache/dtrace/SegmentedCodeCacheDtraceTest.java Sat Sep 19 12:03:36 2015 +0300 @@ -21,6 +21,7 @@ * questions. */ +import compiler.testlibrary.CompilerUtils; import jdk.test.lib.Asserts; import jdk.test.lib.JDKToolFinder; import jdk.test.lib.OutputAnalyzer; @@ -47,7 +48,7 @@ * @test SegmentedCodeCacheDtraceTest * @bug 8015774 * @requires os.family=="solaris" - * @library /testlibrary /compiler/testlibrary /../../test/lib + * @library /testlibrary / /../../test/lib * @build SegmentedCodeCacheDtraceTestWorker * @run main ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission diff -r d8eed614f298 -r 71f9b0782023 hotspot/test/compiler/testlibrary/CompilerUtils.java --- a/hotspot/test/compiler/testlibrary/CompilerUtils.java Fri Sep 18 10:11:11 2015 +0200 +++ b/hotspot/test/compiler/testlibrary/CompilerUtils.java Sat Sep 19 12:03:36 2015 +0300 @@ -21,6 +21,8 @@ * questions. */ +package compiler.testlibrary; + import jdk.test.lib.Asserts; import jdk.test.lib.Platform; import java.util.stream.IntStream;