Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 356 for SKIPPED (0.15 sec)

  1. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompileAvoidanceIntegrationSpec.groovy

            outputContains('greetings')
    
            when:
            run(':c:run')
    
            then:
            skipped(":a:${language.compileTaskName}")
            skipped(":b:${language.compileTaskName}")
            skipped(":c:${language.compileTaskName}")
            outputContains('greetings')
    
            when:
            // Update the library class
            fixture.message = 'hello'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

                executed ":linkMainExecutable", ":mainExecutable"
            } else {
                skipped ":linkHelloSharedLibrary", ":helloSharedLibrary"
                skipped ":linkMainExecutable", ":mainExecutable"
            }
    
            when:
            run "installMainExecutable"
    
            then:
            skipped libraryCompileTask
            skipped mainCompileTask
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioIncrementalIntegrationTest.groovy

            executedAndNotSkipped getComponentTasks("foo:foo")
            skipped getComponentTasks("app")
    
            when:
            run "visualStudio"
    
            then:
            skipped ":appVisualStudioSolution"
            skipped getComponentTasks("foo:foo")
            skipped getComponentTasks("app")
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

            then:
            skipped ":project-lib:jar", ":verify"
    
            when: "changing project library source code"
            withChangedSourceIn("project-lib")
            succeeds "verify"
    
            then:
            executedAndNotSkipped ":project-lib:jar"
            skipped ":verify"
    
            when:
            succeeds "verify"
    
            then:
            skipped ":project-lib:jar", ":verify"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskCustomTypesInputPropertyIntegrationTest.groovy

            run "someTask"
    
            then:
            skipped(":someTask")
    
            // Change the build script
            when:
            buildFile << """
    task someOtherTask
    """
            and:
            run "someTask"
    
            then:
            executedAndNotSkipped(":someTask")
    
            when:
            run "someTask"
    
            then:
            skipped(":someTask")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 22 16:04:50 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriterSpec.groovy

            result.add(new TestMethodResult(4, "some skipped test", "some skipped test displayName", SKIPPED, 10, startTime + 45))
    
            provider.writeAllOutput(1, StdOut, _) >> { args -> args[2].write("1st output message\n2nd output message\n") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

            executedAndNotSkipped libraryDebug.compile
            skipped appDebug.compile
    
            if (nonDeterministicCompilation) {
                // Relinking may (or may not) be required after recompiling
                executed libraryDebug.link
                executed appDebug.link, installApp
            } else {
                skipped libraryDebug.link
                skipped appDebug.link, installApp
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/JUnitTestClassExecutionResult.groovy

            assert testClassNode.@errors == errors
            this
        }
    
        TestClassExecutionResult assertTestCount(int tests, int skipped, int failures, int errors) {
            assert testClassNode.@tests == tests
            assert testClassNode.@skipped == skipped
            assert testClassNode.@failures == failures
            assert testClassNode.@errors == errors
            this
        }
    
        int getTestCount() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

            executedAndNotSkipped ":customTask"
    
            when:
            succeeds ":customTask", "-PoutputDir=build/output1"
            then:
            skipped ":customTask"
    
            when:
            succeeds ":customTask", "-PoutputDir=build/output2"
            then:
            skipped ":customTask"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/3073")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

            then:
            executedAndNotSkipped(project.customTask)
    
            when:
            succeeds project.customTask
            then:
            skipped(project.customTask)
    
            when:
            ignoredResource.changeContents()
            succeeds project.customTask
            then:
            skipped(project.customTask)
    
            when:
            notIgnoredResource.changeContents()
            succeeds project.customTask
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
Back to top