8252401: Introduce Utils.TEST_NATIVE_PATH

Reviewed-by: sspitsyn
This commit is contained in:
Igor Ignatyev 2020-08-28 10:28:06 -07:00
parent 507ec8ab30
commit e1d29cd6fb

View file

@ -117,7 +117,12 @@ public final class Utils {
*/ */
public static final String TEST_NAME = System.getProperty("test.name", "."); public static final String TEST_NAME = System.getProperty("test.name", ".");
/** /**
* Returns the value of 'test.nativepath' system property
*/
public static final String TEST_NATIVE_PATH = System.getProperty("test.nativepath", ".");
/**
* Defines property name for seed value. * Defines property name for seed value.
*/ */
public static final String SEED_PROPERTY_NAME = "jdk.test.lib.random.seed"; public static final String SEED_PROPERTY_NAME = "jdk.test.lib.random.seed";