Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 771 for SKIPPED (0.11 sec)

  1. pkg/test/framework/suite.go

    	scopes.Framework.Infof("Skipping suite %q: %s", ctx.Settings().TestID, s.skipMessage)
    
    	// Mark this suite as skipped in the context.
    	ctx.skipped = true
    
    	// Run the tests so that the golang test framework exits normally. The tests will not run because
    	// they see that this suite has been skipped.
    	_ = s.mRun(ctx)
    
    	// Return success.
    	return 0
    }
    
    func (s *suiteImpl) run() (errLevel int) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/testing/fuzz.go

    	}
    	f.common.Helper()
    	f.common.Fail()
    }
    
    // Skipped reports whether the test was skipped.
    func (f *F) Skipped() bool {
    	// (*F).Skipped may be called by tRunner, which we should allow. However, we
    	// shouldn't allow direct (*F).Skipped calls from inside the (*F).Fuzz function.
    	if f.inFuzzFn {
    		panic("testing: f.Skipped was called inside the fuzz target, use t.Skipped instead")
    	}
    	f.common.Helper()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/integTest/groovy/org/gradle/internal/vfs/DefaultExcludesIntegrationTest.groovy

            then:
            executedAndNotSkipped(":copyTask")
            !copyOfExcludedFile.exists()
    
            when:
            excludedFile.text = "changed"
            run "copyTask"
            then:
            skipped(":copyTask")
        }
    
        def "default excludes are reset if nothing is defined in settings"() {
            settingsFile << addDefaultExclude(EXCLUDED_FILE_NAME)
    
            when:
            run "copyTask"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 12:37:12 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestResult.java

    import java.util.List;
    
    /**
     * Describes a test result.
     */
    public interface TestResult {
        /**
         * The final status of a test.
         */
        public enum ResultType {
            SUCCESS, FAILURE, SKIPPED
        }
    
        /**
         * Returns the type of result.  Generally one wants it to be SUCCESS!
         *
         * @return The result type.
         */
        ResultType getResultType();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/NestedInputKotlinImplementationTrackingIntegrationTest.groovy

            """
    
            buildFile.makeOlder()
    
            when:
            run 'myTask'
            then:
            executedAndNotSkipped(':myTask')
    
            when:
            run 'myTask'
            then:
            skipped(':myTask')
    
            when:
            buildFile.text = """
                tasks.create<TaskWithNestedAction>("myTask") {
                    action = Action { writeText("changed") }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 06:52:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. platforms/software/reporting/src/integTest/groovy/org/gradle/api/reporting/internal/TaskReportContainerIntegTest.groovy

        def "task up to date when no reporting configuration change"() {
            expect:
            succeeds(task)
            executedAndNotSkipped(task)
    
            and:
            succeeds(task)
            skipped(task)
        }
    
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        @ToBeFixedForConfigurationCache
        def "task not up to date when enabled set changes"() {
            expect:
            succeeds(task)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGConsoleLoggingIntegrationTest.groovy

                                    testTask.configure {
                                        testLogging {
                                            quiet {
                                                events "skipped", "failed"
                                                minGranularity 2
                                                maxGranularity -1
                                                displayGranularity 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (1)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            when:
            run "compile"
            then:
            skipped ":compile"
    
            when:
            file("lib1.jar").renameTo(file("lib1-renamed.jar"))
            buildFile.text = buildScriptWithClasspath("lib1-renamed.jar", "lib2.jar")
    
            run "compile"
            then:
            skipped ":compile"
        }
    
        def buildScriptWithClasspath(String... dependencies) {
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/SkipOnlyIfTaskExecuterTest.groovy

            when:
            executer.execute(task, state, executionContext)
    
            then:
            1 * spec.findUnsatisfiedSpec(task) >> Mock(SelfDescribingSpec)
            1 * state.setOutcome(TaskExecutionOutcome.SKIPPED)
            noMoreInteractions()
        }
    
        def handlesOldStyleOnlyIfSpec() {
            given:
            def project = task.project
            def otherTask = Mock(TaskInternal)
            Spec<Task> oldStyleSpec = Mock(Spec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 24 11:36:30 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/cri_stats_provider_windows_test.go

    							TxBytes: toP(20),
    						},
    					},
    				},
    			},
    			wantErr: false,
    			skipped: true,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			// TODO: Remove skip once https://github.com/kubernetes/kubernetes/issues/116692 is fixed.
    			if tt.skipped {
    				t.Skip("Test temporarily skipped.")
    			}
    			p := &criStatsProvider{
    				windowsNetworkStatsProvider: fakeNetworkStatsProvider{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 17 00:02:10 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top