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
I was thinking that I could be interesting to have an easy way to disable AOT for unit tests.
Indeed, for example, I'm currently building a Spring cloud function and I haveimplemented unit tests as indicated in Spring Cloud Function docs.
I will package this function with Native, but I don't want to tackle the native part for unit tests, the classic unit tests are fine.
In the gradle plugin, this section enables the aotTest for all tasks of type Test. Wouldn't it be good to do that section for GraalVM nativeTest task only ?
Also, aotMain seems to be run only for nativeCompile task so I think it would make sense to do the same for test.
Dear team,
I was thinking that I could be interesting to have an easy way to disable AOT for unit tests.
Indeed, for example, I'm currently building a Spring cloud function and I haveimplemented unit tests as indicated in Spring Cloud Function docs.
I will package this function with Native, but I don't want to tackle the native part for unit tests, the classic unit tests are fine.
In the gradle plugin, this section enables the aotTest for all tasks of type
Test. Wouldn't it be good to do that section for GraalVMnativeTesttask only ?Also,
aotMainseems to be run only fornativeCompiletask so I think it would make sense to do the same for test.What do you think ?