You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another option is to update java_wrapper to take in additional parameters as well as run javac + java. Then java_wrapper could use the file annotations to determine whether javac + java is used or just javac
Right now if you annotate a java-to-rust test with
//@check-pass
it also runs and if you annotate with//@run
, it errorsCurrently build.rs compiles all java code with javac then the java-to-rust tests are run with java via the java_wrapper
By having the java compilation separate from the java run, ui_test features that expect compilation success or failure don't work as expected.
The text was updated successfully, but these errors were encountered: