Dominik Dorn

Results 91 comments of Dominik Dorn

once this is implemented, libraries like `zio-process` could even forward this information (like interruption at the moment) to forked processes (e.g. for linux/unix https://ostechnix.com/suspend-process-resume-later-linux/ )

hmm.. will have to search for that.. there was a sbt plugin that was also running natively compiled code + tests, need to see how that was done (and even...

@ezzarghili @fniephaus sorry to pull you in. could you please advice how we can determine at runtime if we're running java through a graalvm-native image? is there something else out...

I propose to do this: `TestAspects.isGraalNativeImage` does : ```java System.getProperty("org.graalvm.nativeimage.imagecode") != null ``` `TestAspects.isGraalNativeImageExecutable` does: ```java System.getProperty("org.graalvm.nativeimage.imagecode") == "executable" ``` `TestAspects.isGraalNativeImageLibrary` does: ```java System.getProperty("org.graalvm.nativeimage.imagecode") == "shared" ``` As for compiling...

@gergo- thanks for chiming in! We're trying to compile test suites to native-images and have a way to enable/disable certain tests depending on which platform they run (e.g. if they...

hmm.. we basically want to be able to do the same thing the quarkus people are doing described here https://quarkus.io/guides/building-native-image#testing-the-native-executable However, I've just read that they do not compile the...

+1 ... also need this feature.. has anything been done in this area or is there a workaround?

I'm having a hard time getting akka-http testing setup in a project that already uses JUnit5 (and which wont will switch back to JUnit4 just cause of Akka-HTTP). Any pointers...

The problem still persists. A solution is to copy the ahc.properties file from the jar file into the conf/ path of the application, thus making sure that the application finds...

sadly we've deleted all code that tests log output from our tests, so can't reproduce this now anymore :-/ did any change in documentation happen?