Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 206 for _run (0.13 sec)

  1. src/cmd/go/go_test.go

    	tg.run("env", "GCCGO")
    	tg.grepStdout(".", "GCCGO unexpectedly empty")
    
    	tg.run("env", "CGO_CFLAGS")
    	tg.grepStdout(".", "default CGO_CFLAGS unexpectedly empty")
    
    	tg.setenv("CGO_CFLAGS", "-foobar")
    	tg.run("env", "CGO_CFLAGS")
    	tg.grepStdout("^-foobar$", "CGO_CFLAGS not honored")
    
    	tg.setenv("CC", "gcc -fmust -fgo -ffaster")
    	tg.run("env", "CC")
    	tg.grepStdout("gcc", "CC not found")
    	tg.run("env", "GOGCCFLAGS")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    					src.CallOrFail(t, opt)
    				})
    			}
    		}
    		t.NewSubTest("before").Run(check)
    
    		SetWaypoint(t, Captured, "bogus-waypoint")
    		t.NewSubTest("with waypoint").Run(check)
    
    		SetWaypoint(t, Captured, "")
    		t.NewSubTest("waypoint removed").Run(check)
    	})
    }
    
    func TestServerRouting(t *testing.T) {
    	framework.NewTest(t).Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/internal/test/test.go

    		}
    	}
    
    	// Force benchmarks to run in serial.
    	if !testC && (testBench != "") {
    		// The first run must wait for all builds.
    		// Later runs must wait for the previous run's print.
    		for i, run := range runs {
    			if i == 0 {
    				run.Deps = append(run.Deps, builds...)
    			} else {
    				run.Deps = append(run.Deps, prints[i-1])
    			}
    		}
    	}
    
    	b.Do(ctx, root)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. tests/integration/security/authz_test.go

    					}
    				})
    		})
    }
    
    func TestAuthz_WorkloadSelector(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			// Verify that the workload-specific path (/policy-<ns>-<svc>) works only on the selected workload.
    			t.NewSubTestf("single workload").
    				Run(func(t framework.TestContext) {
    					from := apps.Ns1.A
    					fromMatch := match.ServiceName(from.NamespacedName())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. src/testing/testing.go

    //
    //	go test -run ''        # Run all tests.
    //	go test -run Foo       # Run top-level tests matching "Foo", such as "TestFooBar".
    //	go test -run Foo/A=    # For top-level tests matching "Foo", run subtests matching "A=".
    //	go test -run /A=1      # For all top-level tests, run subtests matching "A=1".
    //	go test -fuzz FuzzFoo  # Fuzz the target matching "FuzzFoo"
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                }
            """
    
            when:
            run("first", "second")
    
            then:
            output.count("service:") == 4
            outputContains("service: created with value = 10")
            outputContains("service: value is 11")
            outputContains("service: value is 12")
            outputContains("service: closed with value 12")
    
            when:
            run("first", "second")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

    }
    """
    
            expect:
            runAndFail("tool:dependencies")
            failure.assertThatCause(containsString(CONFLICT_FOUND_HEADER_MESSAGE))
            failure.assertHasResolutions("Run with :tool:dependencyInsight --configuration runtimeClasspath " +
                "--dependency org:foo to get more insight on how to solve the conflict.",
                STACKTRACE_MESSAGE,
                INFO_DEBUG,
                SCAN,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceregistry_test.go

    	stop := istiotest.NewStop(t)
    	go configController.Run(stop)
    
    	se := serviceentry.NewController(configController, xdsUpdater, meshWatcher)
    	client.RunAndWait(stop)
    
    	kc.AppendWorkloadHandler(se.WorkloadInstanceHandler)
    	se.AppendWorkloadHandler(kc.WorkloadInstanceHandler)
    
    	go kc.Run(stop)
    	go se.Run(stop)
    
    	return configController, client.Kube(), xdsUpdater
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                        }
                    }
                    ${fooAndBarJars()}
                }
            """
    
            when:
            run ':a:checkDebug'
    
            then:
            result.assertTasksExecuted(':b:fooJar', ':a:checkDebug')
    
            when:
            run ':a:checkRelease'
    
            then:
            result.assertTasksExecuted(':b:barJar', ':a:checkRelease')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
Back to top