Skip to content
Open
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
fc368a8
Dedicated directory with manual BCI unit test tags
steve-s Dec 1, 2025
7ee0bcd
Make Bytecode DSL the default
steve-s Nov 28, 2025
f494ee7
Ignore test_print_exception_gh_102056
steve-s Dec 3, 2025
b1b6d6a
Adapt test_sys_settrace to new test utils
steve-s Dec 3, 2025
b9be23b
Fix assertion 'every bytecode range should have been converted' in co…
steve-s Dec 3, 2025
7ad7ac4
Ignore stack size stability tests, issue: GR-64479
steve-s Dec 3, 2025
8cd7a40
Ignore test_next_until_return_in_generator, issue: GR-71863
steve-s Dec 3, 2025
78ac8a5
Ignore test_sys_settrace tests that give wrong return statement line,…
steve-s Dec 3, 2025
3651170
Ignore tests in test_sys_setprofile and test_trace, issue GR-71865
steve-s Dec 3, 2025
537852b
Ignore few more tagged tests, issues: GR-71869, GR-71867, GR-71866
steve-s Dec 3, 2025
ba92e2a
Ignore two tests in test_syntax, issue GR-71364
steve-s Dec 3, 2025
4785ca6
Trash temporary locals after destructive assignment to pass test_call…
steve-s Dec 4, 2025
15166b2
Ignore TestExpressionStackSize.test_if_else, issue GR-64307
steve-s Dec 4, 2025
2fb4b56
Ignore test_type_annotations.test_match, issue: GR-71365
steve-s Dec 4, 2025
fd48d3f
Ignore few tests in test_inspect, issue: GR-71889
steve-s Dec 5, 2025
5146bbf
Ignore GC tests in test_memoryio, issue: GR-71890
steve-s Dec 5, 2025
a2c9fe4
Ignore test_descr:test_remove_subclass, issue: GR-71917
steve-s Dec 5, 2025
82e6c63
Ignore few test_(c)profile tests, issue: GR-71916
steve-s Dec 5, 2025
ec4190e
Ignore few tests in test_pdb, issue: GR-71918
steve-s Dec 5, 2025
5f3d39f
Ignore HPy test_HPyErr_WarnEx, issue GR-71943
steve-s Dec 9, 2025
67a3f06
Properly disable PythonDebugTest on Bytecode DSL, issue GR-71618
steve-s Dec 9, 2025
587ace5
Fix graalpy-extensions deployment
steve-s Dec 10, 2025
b12ffbe
Fix PythonContext leak through bytecode parser
steve-s Dec 10, 2025
04167a2
Remove Bytecode DSL handling in fork_exec to fix pip installation in …
steve-s Dec 11, 2025
7b244ab
Run TCK without VerifierInstrument, issue GR-71979
steve-s Dec 12, 2025
d796222
Remove Bytecode DSL config from benchmarks
steve-s Dec 12, 2025
08772cd
Workaround Gradle failure in CI
steve-s Dec 12, 2025
4a0e3ce
Fix java_args overriding in mx_graalpython
steve-s Dec 12, 2025
37d685d
Bytecode DSL fix: last expr statement in module is return value for i…
steve-s Dec 15, 2025
420fba6
Do not re-acquire intentionally released GIL in TopLevelExceptionHand…
steve-s Dec 12, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix java_args overriding in mx_graalpython
  • Loading branch information
steve-s committed Dec 12, 2025
commit 4a0e3ced7c8bababe046129ec582002f2026be87
3 changes: 2 additions & 1 deletion mx.graalpython/mx_graalpython.py
Original file line number Diff line number Diff line change
Expand Up @@ -1335,7 +1335,8 @@ def graalpython_gate_runner(_, tasks):
jdk = mx.get_jdk()
prev = jdk.java_args_pfx
try:
jdk.java_args_pfx = (mx._opts.java_args or []) + ['-Dpython.WithoutPlatformAccess=true']
java_args = shlex.split(mx._opts.java_args) if mx._opts.java_args else []
jdk.java_args_pfx = java_args + ['-Dpython.WithoutPlatformAccess=true']
punittest(['--verbose', '--no-leak-tests', '--regex', 'com.oracle.graal.python.test.advanced.ExclusionsTest'])
finally:
jdk.java_args_pfx = prev
Expand Down