Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 356 for SKIPPED (0.11 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            when:
            run 'producesLink'
            then:
            skipped ':producesLink'
    
            when:
            target.delete()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
    
            when:
            run 'producesLink'
            then:
            skipped ':producesLink'
    
            when:
            target.createFile()
            run 'producesLink'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            when:
            cleanBuildDir()
            withBuildCache().run "producer"
            then:
            skipped ":producer"
    
            when:
            withBuildCache().run "producer", "--info"
            !output.contains("Caching disabled for task ':producer'")
            then:
            skipped ":producer"
        }
    
        def "task can be cached after loaded from cache"() {
            file("input.txt").text = "input"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/LambdaInputsIntegrationTest.groovy

            when:
            withBuildCache().run 'myTask', '-Panonymous'
            then:
            skipped(':myTask')
    
            when:
            withBuildCache().run 'myTask'
            then:
            skipped(':myTask')
    
            when:
            withBuildCache().run 'myTask', '-Panonymous'
            then:
            skipped(':myTask')
        }
    
        private TestFile setupTaskClassWithActionProperty() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-base/src/testFixtures/groovy/org/gradle/java/compile/AbstractJavaGroovyCompileAvoidanceIntegrationSpec.groovy

            then:
            succeeds ":b:${language.compileTaskName}"
            skipped ":a:${language.compileTaskName}"
            skipped ":b:${language.compileTaskName}"
    
            when:
            resourceFile.delete()
    
            then:
            succeeds ":b:${language.compileTaskName}"
            skipped ":a:${language.compileTaskName}"
            skipped ":b:${language.compileTaskName}"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/ScalaAnnotationProcessingIntegrationTest.groovy

            given:
            buildFile << basicScalaProject()
            file('src/main/scala/MyClass.java') << javaClassWithCustomAnnotation()
    
            when:
            fails 'compileScala'
    
            then:
            skipped(':compileJava')
            executedAndNotSkipped(':compileScala')
            result.assertHasErrorOutput('error: package org.gradle does not exist')
            failure.assertHasCause('javac returned non-zero exit code')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

        private static final String TASK_PREFIX = "> Task ";
    
        //for example: ':a SKIPPED' or ':foo:bar:baz UP-TO-DATE' but not ':a'
        private static final Pattern SKIPPED_TASK_PATTERN = Pattern.compile("(> Task )?(:\\S+?(:\\S+?)*)\\s+((SKIPPED)|(UP-TO-DATE)|(NO-SOURCE)|(FROM-CACHE))");
    
        //for example: ':hey' or ':a SKIPPED' or ':foo:bar:baz UP-TO-DATE' but not ':a FOO'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

            withBuildCache().run "jar"
            then:
            noneSkipped()
    
            expect:
            withBuildCache().run "clean"
    
            when:
            withBuildCache().run "jar"
            then:
            skipped ":compileJava"
        }
    
        def "outputs are correctly loaded from cache"() {
            buildFile << """
                apply plugin: "application"
                application {
                    mainClass = "Hello"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriter.java

                        case SUCCESS:
                            return Collections.singleton(success(classId, execution.getId()));
                        case SKIPPED:
                            return Collections.singleton(skipped(classId, execution.getId()));
                        case FAILURE:
                            return failures(classId, execution, allFailed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:57 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            when:
            succeeds("printCounts")
            then:
            skipped(':myTask')
            outputContains("outputFileCount = 1, inputFileCount = 2, inputValueCount = 1, nestedInputCount = 3, nestedInputValueCount = 1")
    
            when:
            file('build').deleteDir()
            withBuildCache().succeeds("printCounts")
            then:
            skipped(':myTask')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

                #include MY_HEADER
    """
    
            and:
            outputs.snapshot { run "mainExecutable" }
    
            when:
            run "mainExecutable"
            then:
            skipped compileTask
        }
    
        @ToBeFixedForConfigurationCache
        def "does not recompile when included header has the same name as a directory"() {
            given:
            buildFile << """
    model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
Back to top