-
Notifications
You must be signed in to change notification settings - Fork 2
Description
If boot in clean and build you get an assertion error. Try it again and the error goes away.
pi@gandalf:~/java-vbench $ gradle clean
Starting a Gradle Daemon (subsequent builds will be faster)
BUILD SUCCESSFUL in 25s
1 actionable task: 1 executed
pi@gandalf:~/java-vbench $ gradle build
Task :compileJava
warning: using incubating module(s): jdk.incubator.vector
1 warning
Task :compileTestJava
warning: using incubating module(s): jdk.incubator.vector
1 warning
Task :test
WARNING: Using incubator modules: jdk.incubator.vector
SumArrayTest > fmaArrayVectorVsScalar() FAILED
org.opentest4j.AssertionFailedError at SumArrayTest.java:49
3 tests completed, 1 failed
Task :test FAILED
FAILURE: Build failed with an exception.
- What went wrong:
Execution failed for task ':test'.
There were failing tests. See the report at: file:///home/pi/java-vbench/build/reports/tests/test/index.html
- Try:
Run with --stacktrace option to get the stack trace.
Run with --info or --debug option to get more log output.
Run with --scan to get full insights.
- Get more help at https://help.gradle.org
BUILD FAILED in 12s
4 actionable tasks: 4 executed
pi@gandalf:~/java-vbench $ gradle clean
BUILD SUCCESSFUL in 2s
1 actionable task: 1 executed
pi@gandalf:~/java-vbench $ gradle build
Task :compileJava
warning: using incubating module(s): jdk.incubator.vector
1 warning
Task :compileTestJava
warning: using incubating module(s): jdk.incubator.vector
1 warning
Task :test
WARNING: Using incubator modules: jdk.incubator.vector
BUILD SUCCESSFUL in 7s
4 actionable tasks: 4 executed
pi@gandalf:~/java-vbench $
Not really a code bug I would guess but a little strange.