Skip to content

Commit ac145a2

Browse files
committed
add test for isolation flag
1 parent 2e99a26 commit ac145a2

File tree

1 file changed

+2
-1
lines changed
  • graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/interop

1 file changed

+2
-1
lines changed

graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/interop/JavaInteropTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,8 @@ public static OptionsChecker[] input() {
534534
new OptionsChecker("PythonOptimizeFlag", "import sys; sys.flags.debug", "true", "false"),
535535
new OptionsChecker("PythonOptimizeFlag", "import sys; sys.flags.optimize", "true", "false"),
536536
new OptionsChecker("PythonOptimizeFlag", "__debug__", "true", "false"),
537-
new OptionsChecker("Executable", "import sys; sys.executable", "graalpython", "python3")
537+
new OptionsChecker("Executable", "import sys; sys.executable", "graalpython", "python3"),
538+
new OptionsChecker("IsolateFlag", "import sys; sys.flags.isolated", "true", "false")
538539
};
539540
}
540541

0 commit comments

Comments
 (0)