test/nashorn/src/jdk/nashorn/internal/test/framework/ParallelTestRunner.java
changeset 47217 72e3ae9a25eb
parent 47216 71c04702a3d5
equal deleted inserted replaced
47216:71c04702a3d5 47217:72e3ae9a25eb
   464             }
   464             }
   465         }
   465         }
   466     }
   466     }
   467 
   467 
   468     private static void setTest262Properties() throws IOException {
   468     private static void setTest262Properties() throws IOException {
   469         System.setProperty(TEST_JS_ROOTS, "test/test262/test/suite/");
   469         System.setProperty(TEST_JS_ROOTS, "test/nashorn/script/external/test262/test/suite/");
   470         System.setProperty(TEST_JS_FRAMEWORK, "test/script/test262.js test/test262/test/harness/framework.js test/test262/test/harness/sta.js");
   470         System.setProperty(TEST_JS_FRAMEWORK, "test/nashorn/script/test262.js test/nashorn/script/external/test262/test/harness/framework.js test/nashorn/script/external/test262/test/harness/sta.js");
   471         System.setProperty(TEST_JS_EXCLUDES_FILE, "test/test262/test/config/excludelist.xml");
   471         System.setProperty(TEST_JS_EXCLUDES_FILE, "test/nashorn/script/external/test262/test/config/excludelist.xml");
   472         System.setProperty(TEST_JS_ENABLE_STRICT_MODE, "true");
   472         System.setProperty(TEST_JS_ENABLE_STRICT_MODE, "true");
   473 
   473 
   474         final Properties projectProperties = new Properties();
   474         final Properties projectProperties = new Properties();
   475         projectProperties.load(new FileInputStream("project.properties"));
   475         projectProperties.load(new FileInputStream("project.properties"));
   476         String excludeList = projectProperties.getProperty("test262-test-sys-prop.test.js.exclude.list", "");
   476         String excludeList = projectProperties.getProperty("test262-test-sys-prop.test.js.exclude.list", "");