-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run whole test/Base_Tests with NI #10296
Conversation
We can run whole
after 20f9589 fixes we are down to after d61e5d2 we have finally (for today) with 501c07d we are down to |
distribution/lib/Standard/Base/0.0.0-dev/src/Internal/Array_Like_Helpers.enso
Outdated
Show resolved
Hide resolved
JAVA_OPTS="-agentlib:native-image-agent=config-merge-dir=./engine/runner/src/main/resources/META-INF/native-image/org/enso/runner" ./built-distribution/enso-engine-0.0.0-dev-linux-amd64/enso-0.0.0-dev/bin/enso --run test/Base_Tests
0248742
to
a1bff6e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a huge step forward. Congratulations on making all the tests pass in such a short time. Will there be a follow-up PR enabling test/Table_Tests
as well?
@@ -11,7 +11,10 @@ polyglot java import java.time.temporal.TemporalAdjuster | |||
polyglot java import java.time.temporal.TemporalAdjusters | |||
polyglot java import java.time.temporal.TemporalUnit | |||
polyglot java import org.enso.base.time.CustomTemporalUnits | |||
polyglot java import org.enso.base.time.Date_Utils |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't these imports also be kept in Extra_Imports.enso
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My decision making process was:
- if the failure is in
*_Spec.enso
file, put thepolyglot java import
intoExtra_Imports.enso
- if the failure is in
Standard.Base
library file, put the import into that file.
In this case the failure was in Date_Period.enso
file, I believe.
The next step is to implement -e.g. work on support for |
Pull Request Description
Fixes #10126 by various changes to make more
test/Base_Tests
pass in the Enso mode.Checklist
Please ensure that the following checklist has been satisfied before submitting the PR:
Java,
Rust
style guides.
test/Base_Tests
via./runner
in CI