Skip to content

Commit 067089a

Browse files
committed
[GR-21590] Update Python imports.
PullRequest: graalpython/2791
2 parents 2f0d108 + 1d3f025 commit 067089a

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "overlay": "72f807679e39847d0709cbaf8c24109a63e7c473" }
1+
{ "overlay": "d5b4064ebdf5a27a1fd07e706a5e5c52016b5c70" }

mx.graalpython/mx_graalpython.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1069,9 +1069,9 @@ def is_alive(self):
10691069
alive[i] = t.is_alive()
10701070

10711071
thread_errors = [t.result for t in threads if t.result != 0]
1072+
for t in threads:
1073+
mx.log("\n\n### Output of thread %r: \n\n%s" % (t.name, t.out))
10721074
if any(thread_errors):
1073-
for t in threads:
1074-
mx.log_error("\n\n### Output of thread %r: \n\n%s" % (t.name, t.out))
10751075
if nonZeroIsFatal:
10761076
mx.abort("At least one HPy testing thread failed.")
10771077

mx.graalpython/native-image.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ JavaArgs = -Dpolyglot.image-build-time.PreinitializeContexts=python \
77
--add-exports org.graalvm.sdk/org.graalvm.nativeimage.impl=ALL-UNNAMED
88

99
Args = -H:MaxRuntimeCompileMethods=20000 \
10+
-R:StackSize=16777216 \
1011
-H:+AddAllCharsets \
1112
-H:IncludeLocales=no,be,ro,ru,es,se,in,ka,hu,hr,bg,is,mk,da,nn,cs,sq,fr,pl,fo,bs,kl,fa,sv,it,uk,af,tg,ps,de \
1213
--initialize-at-build-time=com.oracle.graal.python,com.oracle.truffle.regex,jline,org.fusesource \

mx.graalpython/suite.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,31 +44,31 @@
4444
},
4545
{
4646
"name": "sdk",
47-
"version": "d08de8b4f1a84df6d7a46afc28173f97f2e7c1b5",
47+
"version": "1278cae8aab28d43939aefaf699e1c09d529715b",
4848
"subdir": True,
4949
"urls": [
5050
{"url": "https://github.com/oracle/graal", "kind": "git"},
5151
]
5252
},
5353
{
5454
"name": "tools",
55-
"version": "d08de8b4f1a84df6d7a46afc28173f97f2e7c1b5",
55+
"version": "1278cae8aab28d43939aefaf699e1c09d529715b",
5656
"subdir": True,
5757
"urls": [
5858
{"url": "https://github.com/oracle/graal", "kind": "git"},
5959
],
6060
},
6161
{
6262
"name": "sulong",
63-
"version": "d08de8b4f1a84df6d7a46afc28173f97f2e7c1b5",
63+
"version": "1278cae8aab28d43939aefaf699e1c09d529715b",
6464
"subdir": True,
6565
"urls": [
6666
{"url": "https://github.com/oracle/graal", "kind": "git"},
6767
]
6868
},
6969
{
7070
"name": "regex",
71-
"version": "d08de8b4f1a84df6d7a46afc28173f97f2e7c1b5",
71+
"version": "1278cae8aab28d43939aefaf699e1c09d529715b",
7272
"subdir": True,
7373
"urls": [
7474
{"url": "https://github.com/oracle/graal", "kind": "git"},

0 commit comments

Comments
 (0)