jdk-24/test/jdk/tools/jjs/sysprops.js
2017-09-12 19:03:39 +02:00

12 lines
252 B
JavaScript

/*
* This is the test JavaScript program used in jjs-DTest.sh
*/
var Sys = java.lang.System;
if (Sys.getProperty("jjs.foo") == "bar") {
print("Passed");
} else {
// unexpected value
throw new Error("Unexpected System property value");
}