Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for TestID (0.11 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

            }
    
            public void onOutput(long classId, long testId, TestOutputEvent outputEvent) {
                boolean stdout = outputEvent.getDestination() == TestOutputEvent.Destination.StdOut;
                mark(classId, testId, stdout);
    
                output.writeBoolean(stdout);
                output.writeSmallLong(classId);
                output.writeSmallLong(testId);
    
                byte[] bytes;
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. .teamcity/performance-tests-ci.json

        "testId" : "org.gradle.performance.experiment.declarativedsl.DeclarativeDslFirstUsePerformanceTest.clean checkout",
        "groups" : [ {
          "testProject" : "largeEmptyMultiProjectDeclarativeDsl",
          "coverage" : {
            "per_day" : [ "linux", "macOs", "windows" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.experiment.declarativedsl.DeclarativeDslFirstUsePerformanceTest.cold daemon",
        "groups" : [ {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/accesslogs_test.go

    		clientCount := logCount(t, from, testID)
    		serverCount := logCount(t, to, testID)
    
    		from.CallOrFail(t, echo.CallOptions{
    			To: to,
    			Port: echo.Port{
    				Name: "http",
    			},
    			HTTP: echo.HTTP{
    				Path: "/" + testID,
    			},
    		})
    
    		return retry.UntilSuccess(func() error {
    			clientDeltaCount := logCount(t, from, testID) - clientCount
    			if clientDeltaCount > 0 != exceptClientLog {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. pkg/test/framework/suite.go

    	return newSuite(suiteName,
    		func(_ *suiteContext) int {
    			return m.Run()
    		},
    		os.Exit,
    		getSettings)
    }
    
    func newSuite(testID string, fn mRunFn, osExit func(int), getSettingsFn getSettingsFunc) *suiteImpl {
    	s := &suiteImpl{
    		testID:      testID,
    		mRun:        fn,
    		osExit:      osExit,
    		getSettings: getSettingsFn,
    		labels:      label.NewSet(),
    	}
    
    	return s
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestRunner.groovy

        }
    
        CrossVersionPerformanceResults run() {
            assumeShouldRun()
    
            def results = new CrossVersionPerformanceResults(
                testClass: testClassName,
                testId: testId,
                previousTestIds: previousTestIds.collect { it.toString() }, // Convert GString instances
                testProject: testProject,
                tasks: tasksToRun.collect { it.toString() },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. pkg/test/framework/suite_test.go

    func settingsFn(s *resource.Settings) func(string) (*resource.Settings, error) {
    	return func(testID string) (*resource.Settings, error) {
    		s.TestID = testID
    		s.BaseDir = os.TempDir()
    		return s, nil
    	}
    }
    
    func defaultSettingsFn(testID string) (*resource.Settings, error) {
    	s := resource.DefaultSettings()
    	s.TestID = testID
    	s.BaseDir = os.TempDir()
    
    	return s, nil
    }
    
    func cleanupRT() {
    	rtMu.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. pkg/test/framework/resource/flags.go

    // calling this function.
    func SettingsFromCommandLine(testID string) (*Settings, error) {
    	if !config.Parsed() {
    		panic("config.Parse must be called before this function")
    	}
    
    	s := settingsFromCommandLine.Clone()
    	s.TestID = testID
    
    	f, err := label.ParseSelector(s.SelectorString)
    	if err != nil {
    		return nil, err
    	}
    	s.Selector = f
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. pkg/test/framework/test.go

    				t.goTest.Name(), t.ctx.Settings().Revisions.Minimum(), t.minIstioVersion)
    		}
    	}
    
    	start := time.Now()
    	scopes.Framework.Infof("=== BEGIN: Test: '%s[%s]' ===", rt.suiteContext().Settings().TestID, t.goTest.Name())
    
    	// Initial setup if we're running in Parallel.
    	if parallel {
    		// Run the underlying Go test in parallel. This will not return until the parent
    		// test (if there is one) exits.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top