Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for noExtraLogging (0.16 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/launcher/daemon/DaemonPerformanceMonitoringSoakTest.groovy

            def dataFile = file("stats")
            int newDaemons = 0
            try {
                for (int i = 0; i < maxBuilds; i++) {
                    executer.noExtraLogging()
                    executer.withBuildJvmOpts("-Xms128m", "-XX:MaxMetaspaceSize=${heapSize}", "-Xmx${heapSize}", "-Dorg.gradle.daemon.performance.logging=true")
                    GradleHandle gradle = executer.start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGUpToDateCheckIntegrationTest.groovy

    import org.gradle.testing.fixture.TestNGCoverage
    import spock.lang.Issue
    
    class TestNGUpToDateCheckIntegrationTest extends AbstractIntegrationSpec {
    
        def setup() {
            executer.noExtraLogging()
            file('src/test/java/SomeTest.java') << '''
                public class SomeTest {
                    @org.testng.annotations.Test(groups = {"group to include"})
                    public void pass() {}
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitConsoleLoggingIntegrationTest.groovy

    abstract class AbstractJUnitConsoleLoggingIntegrationTest extends AbstractTestingMultiVersionIntegrationTest {
        TestFile testFile = file('src/test/java/org/gradle/SomeTest.java')
    
        def setup() {
            executer.noExtraLogging()
            testFile << """
                package org.gradle;
    
                ${testFrameworkImports}
    
                public class SomeTest {
                    @Test
                    public void goodTest() {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

            int currentSize = daemons.getRegistry().getAll().size()
            if (shouldApplyAgent != null) {
                withAgentApplied(shouldApplyAgent)
            }
            def daemon = executer.noExtraLogging().withArgument("--foreground").start()
            // Wait for foreground daemon to be ready
            poll() { assert daemons.getRegistry().getAll().size() == (currentSize + 1) }
            return daemon
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGIntegrationTest.groovy

    import static org.hamcrest.CoreMatchers.not
    
    @TargetCoverage({ TestNGCoverage.SUPPORTED_BY_JDK })
    class TestNGIntegrationTest extends MultiVersionIntegrationSpec {
    
        def setup() {
            executer.noExtraLogging()
            TestNGCoverage.enableTestNG(buildFile, version)
        }
    
        def "executes tests in correct environment"() {
            given:
            buildFile << """
                test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            executer.withBuildJvmOpts(buildJvmOpts);
            if (useOnlyRequestedJvmOpts) {
                executer.useOnlyRequestedJvmOpts();
            }
            executer.noExtraLogging();
    
            if (expectedGenericDeprecationWarnings > 0) {
                executer.expectDeprecationWarnings(expectedGenericDeprecationWarnings);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

         */
        GradleExecuter withJdkWarningChecksEnabled();
    
        /**
         * An executer may decide to implicitly bump the logging level, unless this is called.
         */
        GradleExecuter noExtraLogging();
    
        /**
         * Configures that any daemons used by the execution are unique to the test.
         *
         * This value is persistent across executions by this executer.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top