Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 646 for SKIPPED (0.1 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. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelIncrementalIntegrationTest.groovy

            then:
            skipped ":appVisualStudioSolution"
            executedAndNotSkipped getComponentTasks("main")
    
            and:
            final projectFile = projectFile("mainExe.vcxproj")
            assert projectFile.sourceFiles.contains('src/main/cpp/foo.cpp')
    
            when:
            run "visualStudio"
    
            then:
            skipped ":appVisualStudioSolution"
            skipped getComponentTasks("main")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCleanupProgressMonitorTest.groovy

            1 * context.progress("2 entries deleted, 1 skipped")
        }
    
        def "always reports deleted, even if all entries are skipped"() {
            when:
            progressMonitor.incrementSkipped()
    
            then:
            1 * context.progress("0 entries deleted, 1 skipped")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestProgressLoggingIntegrationTest.groovy

            }
        }
    
        def "captures skipped test progress logging events" () {
            withSkippedTestClasses(10)
    
            when:
            succeeds("test")
    
            then:
            events.statusLogged("0 tests completed")
            events.statusLogged("1 test completed, 1 skipped")
            (2..10).each { count ->
                assert events.statusLogged("${count} tests completed, ${count} skipped")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top