<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Description: Disables the buildSrc tests to work around a Gradle bug (UnsupportedOperationException: Cannot nest operations in the same thread)
Author: Emmanuel Bourg &lt;ebourg@apache.org&gt;
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;
</pre></body></html>