Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 346 for runTests (0.11 sec)

  1. hack/make-rules/test-integration.sh

    cleanup() {
      if [[ -z "${CLEANUP_REQUIRED}" ]]; then
        return
      fi
      kube::log::status "Cleaning up etcd"
      kube::etcd::cleanup
      CLEANUP_REQUIRED=
      kube::log::status "Integration test cleanup complete"
    }
    
    runTests() {
      kube::log::status "Starting etcd instance"
      CLEANUP_REQUIRED=1
      kube::etcd::start
      # shellcheck disable=SC2034
      local ETCD_SCRAPE_PID # Set in kube::etcd::start_scraping, used in cleanup
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. hack/make-rules/test-cmd.sh

    setup
    run_kube_apiserver
    run_kube_controller_manager
    create_node
    export SUPPORTED_RESOURCES=("*")
    # WARNING: Do not wrap this call in a subshell to capture output, e.g. output=$(runTests)
    # Doing so will suppress errexit behavior inside runTests
    runTests
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

            return new ProviderBuildResult<>(results);
        }
    
        /**
         * This is used by consumers 2.6-rc-1 and later
         */
        @Override
        public BuildResult<?> runTests(InternalTestExecutionRequest testExecutionRequest, InternalCancellationToken cancellationToken, BuildParameters operationParameters)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

        @Override
        public void stop() {
            try {
                runTests();
            } finally {
                resultProcessorActor.stop();
            }
        }
    
        @Override
        public void stopNow() {
            throw new UnsupportedOperationException("stopNow() should not be invoked on remote worker TestClassProcessor");
        }
    
        private void runTests() {
            TestNG testNg = new TestNG();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. hack/make-rules/test.sh

        go -C "${KUBE_ROOT}/cmd/prune-junit-xml" install .
      fi
      prune-junit-xml "${junit_xml_filename}"
    
      kube::log::status "Saved JUnit XML test report to ${junit_xml_filename}"
    }
    
    runTests() {
      local junit_filename_prefix
      junit_filename_prefix=$(junitFilenamePrefix)
    
      # Try to normalize input names.
      local -a targets
      kube::util::read-array targets < <(kube::golang::normalize_go_targets "$@")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    	}
    	if opts.bench {
    		// Run no tests.
    		run = append(run, "-run=^$")
    		// Run benchmarks briefly as a smoke test.
    		run = append(run, "-bench=.*", "-benchtime=.1s")
    	} else if opts.runTests != "" {
    		run = append(run, "-run="+opts.runTests)
    	}
    	if opts.cpu != "" {
    		run = append(run, "-cpu="+opts.cpu)
    	}
    	if t.json {
    		run = append(run, "-json")
    	}
    
    	if opts.gcflags != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. cmd/leak-detect_test.go

    			continue
    		}
    		stack := strings.TrimSpace(sl[1])
    		// ignore the testing go routine.
    		// since the tests will be invoking the leaktest it would contain the test go routine.
    		if strings.HasPrefix(stack, "testing.RunTests") {
    			continue
    		}
    		// Ignore the following go routines.
    		// testing and run time go routines should be ignored, only the application generated go routines should be taken into account.
    		if isIgnoredStackFn(stack) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/net/http/main_test.go

    			strings.Contains(stack, "testing.(*M).before.func1") ||
    			strings.Contains(stack, "os/signal.signal_recv") ||
    			strings.Contains(stack, "created by net.startServer") ||
    			strings.Contains(stack, "created by testing.RunTests") ||
    			strings.Contains(stack, "closeWriteAndWait") ||
    			strings.Contains(stack, "testing.Main(") ||
    			// These only show up with GOTRACEBACK=2; Issue 5005 (comment 28)
    			strings.Contains(stack, "runtime.goexit") ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:49:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultTestLauncher.java

                    return operationParameters;
                }
    
                @Override
                public Void run(ConsumerConnection connection) {
                    connection.runTests(testExecutionRequest, getParameters());
                    return null;
                }
            }, new ResultHandlerAdapter(handler));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/runtime/debug/stack_test.go

    	runtime/debug.TestStack(0xc8201ce000)
    		/Users/r/go/src/runtime/debug/stack_test.go:37 +0x38
    	testing.tRunner(0xc8201ce000, 0x664b58)
    		/Users/r/go/src/testing/testing.go:456 +0x98
    	created by testing.RunTests
    		/Users/r/go/src/testing/testing.go:561 +0x86d
    */
    func TestStack(t *testing.T) {
    	b := T(0).method()
    	lines := strings.Split(string(b), "\n")
    	if len(lines) < 6 {
    		t.Fatal("too few lines")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top