Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for TestID (0.24 sec)

  1. pkg/test/framework/resource/settings.go

    	return &Settings{
    		RunID:    uuid.New(),
    		MaxDumps: 10,
    	}
    }
    
    // String implements fmt.Stringer
    func (s *Settings) String() string {
    	result := ""
    
    	result += fmt.Sprintf("TestID:            						 %s\n", s.TestID)
    	result += fmt.Sprintf("RunID:             						 %s\n", s.RunID.String())
    	result += fmt.Sprintf("NoCleanup:         						 %v\n", s.NoCleanup)
    	result += fmt.Sprintf("BaseDir:           						 %s\n", s.BaseDir)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/cleanup.go

    	// Write time spent for cleanup and deploy to ARTIFACTS/trace.yaml and logs to allow analyzing test times
    	defer func() {
    		delta := time.Since(t0)
    		i.ctx.RecordTraceEvent("istio-cleanup", delta.Seconds())
    		scopes.Framework.Infof("=== SUCCEEDED: Cleanup Istio in %v [Suite=%s] ===", delta, i.ctx.Settings().TestID)
    	}()
    
    	if i.cfg.DumpKubernetesManifests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/go/internal/test/test.go

    	testID := h.Sum()
    	if c.id1 == (cache.ActionID{}) {
    		c.id1 = testID
    	} else {
    		c.id2 = testID
    	}
    	if cache.DebugTest {
    		fmt.Fprintf(os.Stderr, "testcache: %s: test ID %x => %x\n", a.Package.ImportPath, id, testID)
    	}
    
    	// Load list of referenced environment variables and files
    	// from last run of testID, and compute hash of that content.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top