Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,316 for nfail (0.05 sec)

  1. src/internal/bytealg/index_amd64.s

    	ADDQ $1,DI
    	CMPQ DI,DX
    	JB loop3
    	JMP fail
    partial_success3:
    	MOVW 1(DI), SI
    	CMPW SI,BX
    	JZ success
    	ADDQ $1,DI
    	CMPQ DI,DX
    	JB loop3
    	JMP fail
    _4_or_more:
    	CMPQ AX, $4
    	JA   _5_or_more
    	MOVL (R8), R8
    	LEAQ -3(DI)(DX*1), DX
    loop4:
    	MOVL (DI), SI
    	CMPL SI,R8
    	JZ   success
    	ADDQ $1,DI
    	CMPQ DI,DX
    	JB loop4
    	JMP fail
    _5_or_more:
    	CMPQ AX, $7
    	JA   _8_or_more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:20:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. test/fixedbugs/bug248.dir/bug3.go

    		println("bad v0 path", len(s), s)
    		panic("fail")
    	}
    	if s := reflect.TypeOf(v1).PkgPath(); !strings.HasSuffix(s, "/bug1") && !strings.HasPrefix(s, "bug1") {
    		println("bad v1 path", s)
    		panic("fail")
    	}
    
    	// check that dynamic interface check doesn't get confused
    	var i interface{} = t0(0)
    	if _, ok := i.(I1); ok {
    		println("used t0 as i1")
    		panic("fail")
    	}
    	if _, ok := i.(p1.I); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 26 15:20:42 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  3. hack/verify-e2e-test-ownership.sh

          passing: map(select(.policy.fail | not)) | length,
          failing: map(select(.policy.fail)) | length,
          testnames: map(select(.policy.fail) | .testname),
        }
      })
      # add a meta policy based on whether any policy failed
      + {
        all_policies: \$results | {
          level: "WARN",
          reason: "should pass all policies",
          passing: map(select(.policies | map(.fail) | any | not)) | length,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 06:46:18 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    		case c == '_':
    			rst.advance(1)
    			break digitLoop
    		default:
    			rst.fail("expected hex digit or _")
    		}
    		rst.advance(1)
    		if val == 0 && digit == 0 && (len(rst.str) == 0 || rst.str[0] != '_') {
    			rst.fail("invalid leading 0 in constant")
    		}
    		val *= 16
    		val += digit
    		digits++
    	}
    
    	if digits == 0 {
    		rst.fail("expected constant")
    	}
    
    	switch kind {
    	case signedInt, unsignedInt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  5. src/testing/panic_test.go

    		flags: []string{"-test_panic_test=TestPanicHelper"},
    		want: `
    --- FAIL: TestPanicHelper (N.NNs)
        panic_test.go:NNN: TestPanicHelper
    `,
    	}, {
    		desc:  "subtest panics",
    		flags: []string{"-test_panic_test=TestPanicHelper/1"},
    		want: `
    --- FAIL: TestPanicHelper (N.NNs)
        panic_test.go:NNN: TestPanicHelper
        --- FAIL: TestPanicHelper/1 (N.NNs)
            panic_test.go:NNN: TestPanicHelper/1
    `,
    	}, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 16:49:24 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testerrors/ptr_test.go

    		body:    `parg := [1]**C.char{&hello13[0]}; C.f13(&parg[0])`,
    		fail:    true,
    	},
    	{
    		// Storing a Go pointer into C memory should fail.
    		name: "barrier",
    		c: `#include <stdlib.h>
    		    char **f14a() { return malloc(sizeof(char*)); }
    		    void f14b(char **p) {}`,
    		body:      `p := C.f14a(); *p = new(C.char); C.f14b(p)`,
    		fail:      true,
    		expensive: true,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_json_exit.txt

    # Test functions that panic should never be marked as passing
    # (https://golang.org/issue/40132).
    
    ! go test -json ./testpanic
    stdout '"Action":"fail"'
    ! stdout '"Action":"pass"'
    
    ! go tool test2json ./testpanic.exe -test.v
    stdout '"Action":"fail"'
    ! stdout '"Action":"pass"'
    
    ! go tool test2json ./testpanic.exe
    stdout '"Action":"fail"'
    ! stdout '"Action":"pass"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 19:43:21 UTC 2020
    - 2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_chatty.txt

    ! go test -v chatty_error_fuzz_test.go
    ! stdout '^ok'
    stdout 'FAIL'
    stdout 'error in target'
    
    # Run chatty fuzz targets with a fatal.
    ! go test -v chatty_fatal_fuzz_test.go
    ! stdout '^ok'
    stdout 'FAIL'
    stdout 'fatal in target'
    
    # Run chatty fuzz target with a panic
    ! go test -v chatty_panic_fuzz_test.go
    ! stdout ^ok
    stdout FAIL
    stdout 'this is bad'
    
    # Run skipped chatty fuzz targets.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. test/intcvt.go

    		panic("fail")
    	}
    }
    func chku16(i, v uint16) {
    	if i != v {
    		println(i, "!=", v)
    		panic("fail")
    	}
    }
    func chku32(i, v uint32) {
    	if i != v {
    		println(i, "!=", v)
    		panic("fail")
    	}
    }
    func chku64(i, v uint64) {
    	if i != v {
    		println(i, "!=", v)
    		panic("fail")
    	}
    }
    //func chkf32(f, v float32) { if f != v { println(f, "!=", v); panic("fail") } }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractJvmFailFastIntegrationSpec.groovy

            where:
            description       | taskList                   | buildConfig
            'failFast = true' | ['test']                   | 'test { failFast = true }'
            '--fail-fast'     | ['test', '--fail-fast']    | ''
        }
    
        def "ensure fail fast with forkEvery #forkEvery, maxWorkers #maxWorkers, omittedTests #testOmitted"() {
            given:
            buildFile.text = generator.initBuildFile(maxWorkers, forkEvery)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top