1 # This file identifies the root of the test-suite hierarchy. 2 # It also contains test-suite configuration information. 3 4 # The list of keywords supported in the entire test suite. The 5 # "intermittent" keyword marks tests known to fail intermittently. 6 # The "randomness" keyword marks tests using randomness with test 7 # cases differing from run to run. (A test using a fixed random seed 8 # would not count as "randomness" by this definition.) Extra care 9 # should be taken to handle test failures of intermittent or 10 # randomness tests. 11 12 keys=intermittent randomness needs-src needs-src-jdk_javadoc 13 14 # Group definitions 15 groups=TEST.groups 16 17 # Minimum jtreg version 18 requiredVersion=8.2.1+1 19 20 21 # Path to libraries in the topmost test directory. This is needed so @library 22 # does not need ../../ notation to reach them 23 external.lib.roots = ../../ 24 25 # Allow querying of various System properties in @requires clauses 26 # 27 # Source files for classes that will be used at the beginning of each test suite run, 28 # to determine additional characteristics of the system for use with the @requires tag. 29 # Note: compiled bootlibs classes will be added to BCP. 30 requires.extraPropDefns = ../jtreg-ext/requires/VMProps.java 31 requires.extraPropDefns.bootlibs = ../lib/jdk/test/whitebox 32 requires.extraPropDefns.libs = \ 33 ../lib/jdk/test/lib/Platform.java \ 34 ../lib/jdk/test/lib/Container.java 35 requires.extraPropDefns.javacOpts = \ 36 --add-exports java.base/jdk.internal.foreign=ALL-UNNAMED \ 37 --add-exports java.base/jdk.internal.misc=ALL-UNNAMED 38 requires.extraPropDefns.vmOpts = \ 39 -XX:+UnlockDiagnosticVMOptions \ 40 -XX:+LogVMOutput -XX:-DisplayVMOutput -XX:LogFile=vmprops.flags.final.vm.log \ 41 -XX:+PrintFlagsFinal \ 42 -XX:+WhiteBoxAPI \ 43 --add-exports java.base/jdk.internal.foreign=ALL-UNNAMED \ 44 --add-exports java.base/jdk.internal.misc=ALL-UNNAMED 45 requires.properties= \ 46 vm.continuations \ 47 vm.debug \ 48 java.enablePreview --- EOF ---