Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,316 for nfail (0.04 sec)

  1. src/internal/trace/testdata/tests/go122-fail-first-gen-first.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 256 bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/testdata/bad-wasm-envoy-filter-fail-open.yaml

    John Howard <******@****.***> 1710204837 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 00:53:57 UTC 2024
    - 239 bytes
    - Viewed (0)
  3. src/testing/testing_test.go

    	// marked as failed, and that failure should propagate up to the parents.
    	cFail := bytes.Count(out, []byte("--- FAIL:"))
    	wantFail := 0
    	if race.Enabled {
    		wantFail = 4
    	}
    	if cFail != wantFail {
    		t.Errorf(`got %d "--- FAIL:" lines, want %d`, cReport, wantReport)
    	}
    }
    
    func TestRaceInCleanup(t *testing.T) {
    	if os.Getenv("GO_WANT_HELPER_PROCESS") == "1" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/FailingIncrementalTasksIntegrationTest.groovy

            """
            succeeds "incrementalTask", "-PexpectIncremental=false"
    
            file("src/input-change.txt") << "input"
            fails "incrementalTask", "-PexpectIncremental=true", "-PmodifyOutputs=$modifyOutputs", "-Pfail"
    
            expect:
            succeeds "incrementalTask", "-PexpectIncremental=$incremental"
    
            where:
            modifyOutputs | incremental | description
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 01 14:32:13 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fail_fast.txt

    [short] skip
    
    # test fail fast
    ! go test ./failfast_test.go -run='TestFailingA' -failfast=true
    stdout -count=1 'FAIL - '
    ! go test ./failfast_test.go -run='TestFailing[AB]' -failfast=true
    stdout -count=1 'FAIL - '
    ! go test ./failfast_test.go -run='TestFailing[AB]' -failfast=false
    stdout -count=2 'FAIL - '
    
    # mix with non-failing tests
    ! go test ./failfast_test.go -run='TestA|TestFailing[AB]' -failfast=true
    stdout -count=1 'FAIL - '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. test/ken/embed.go

    		panic("fail")
    	}
    	if s.test2() != s.a2 {
    		println("t3", 2)
    		panic("fail")
    	}
    	if s.test3() != s.a3 {
    		println("t3", 3)
    		panic("fail")
    	}
    	if s.test4() != s.a4 {
    		println("t3", 4)
    		panic("fail")
    	}
    	if s.test5() != s.a5 {
    		println("t3", 5)
    		panic("fail")
    	}
    	if s.test6() != s.a6 {
    		println("t3", 6)
    		panic("fail")
    	}
    	if s.test7() != s.a7 {
    		println("t3", 7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 03 17:03:15 UTC 2016
    - 4.3K bytes
    - Viewed (0)
  7. test/fixedbugs/issue9608.dir/issue9608.go

    	case false:
    		fail()
    	}
    
    	const a = "a"
    	switch a {
    	case "b":
    		fail()
    	}
    
    	const snowman = '☃'
    	switch snowman {
    	case '☀':
    		fail()
    	}
    
    	const zero = float64(0.0)
    	const one = float64(1.0)
    	switch one {
    	case -1.0:
    		fail()
    	case zero:
    		fail()
    	}
    
    	switch 1.0i {
    	case 1:
    		fail()
    	case -1i:
    		fail()
    	}
    
    	const no = false
    	switch no {
    	case true:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 05:12:39 UTC 2016
    - 1K bytes
    - Viewed (0)
  8. test/fixedbugs/bug19403.go

    	}
    	count -= 1
    	if f8 != count {
    		panic("fail")
    	}
    	count -= 1
    	if f7 != count {
    		panic("fail")
    	}
    	count -= 1
    	if f6 != count {
    		panic("fail")
    	}
    	count -= 1
    	if f5 != count {
    		panic("fail")
    	}
    	count -= 1
    	if f4 != count {
    		panic("fail")
    	}
    	count -= 1
    	if f3 != count {
    		panic("fail")
    	}
    	count -= 1
    	if f2 != count {
    		panic("fail")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 06 21:39:00 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  9. test/method.go

    		panic("fail")
    	}
    	if I.val(i) != 3 {
    		println("I.val(i):", I.val(i))
    		panic("fail")
    	}
    	if (*I).val(&i) != 3 {
    		println("(*I).val(&i):", (*I).val(&i))
    		panic("fail")
    	}
    	if pi.val() != 4 {
    		println("pi.val:", pi.val())
    		panic("fail")
    	}
    	if (*I1).val(pi) != 4 {
    		println("(*I1).val(pi):", (*I1).val(pi))
    		panic("fail")
    	}
    	if t.val() != 7 {
    		println("t.val:", t.val())
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 11 23:20:52 UTC 2013
    - 5.2K bytes
    - Viewed (0)
  10. test/ken/cplx2.go

    	}
    
    	c4 := -(r - i)
    	if c4 != C4 {
    		println("opcode x", c4, C4)
    		panic("fail")
    	}
    
    	c5 := c1 + r
    	if c5 != C5 {
    		println("opcode x", c5, C5)
    		panic("fail")
    	}
    
    	c6 := c1 + i
    	if c6 != C6 {
    		println("opcode x", c6, C6)
    		panic("fail")
    	}
    
    	ca := c5 + c6
    	if ca != Ca {
    		println("opcode x", ca, Ca)
    		panic("fail")
    	}
    
    	cb := c5 - c6
    	if cb != Cb {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 1.9K bytes
    - Viewed (0)
Back to top