You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/openjfx/files/11/disable-buildSrc-tests.patch

14 lines
534 B

Description: Disables the buildSrc tests to work around a Gradle bug (UnsupportedOperationException: Cannot nest operations in the same thread)
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/buildSrc/build.gradle
+++ b/buildSrc/build.gradle
@@ -81,6 +81,7 @@
// Java 7 but when we switch to 8 this will be needed, and probably again when
// we start building with Java 9.
test {
+ enabled = false;
enableAssertions = true;
testLogging.exceptionFormat = "full";
scanForTestClasses = false;