Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for Failure (0.11 sec)

  1. src/testing/testing.go

    	short = flag.Bool("test.short", false, "run smaller test suite to save time")
    
    	// The failfast flag requests that test execution stop after the first test failure.
    	failFast = flag.Bool("test.failfast", false, "do not start new tests after the first test failure")
    
    	// The directory in which to create profile files and the like. When run from
    	// "go test", the binary always runs in the source directory for the package;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    // If we are running multiple test targets, print a final "FAIL"
    // in case a failure in an early package has already scrolled
    // off of the user's terminal.
    // (See https://golang.org/issue/30507#issuecomment-470593235.)
    //
    // In JSON mode, we need to maintain valid JSON output and
    // we assume that the test output is being parsed by a tool
    // anyway, so the failure will not be missed and would be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_test.go

    	testClientHello(t, serverConfig, clientHello)
    
    	// Now test that switching to an RSA key causes the expected error (and
    	// not an internal error about a signing failure).
    	serverConfig.Certificates = testConfig.Certificates
    	testClientHelloFailure(t, serverConfig, clientHello, "no cipher suite supported by both client and server")
    }
    
    func TestDontSelectRSAWithECDSAKey(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    		if time.Until(deadline) < duration {
    			break
    		}
    		t.Logf("retrying with %s duration", duration)
    	}
    
    	if broken {
    		t.Skipf("ignoring failure on %s/%s; see golang.org/issue/13841", runtime.GOOS, runtime.GOARCH)
    	}
    
    	// Ignore the failure if the tests are running in a QEMU-based emulator,
    	// QEMU is not perfect at emulating everything.
    	// IN_QEMU environmental variable is set by some of the Go builders.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    	{"012abcba210", "\xffb", 6},
    	{"012\x80bcb\x80210", "\xffb", 7},
    	{"0123456\xcf\x80abc", "\xcfb\x80", 10},
    }
    
    // Execute f on each test case.  funcName should be the name of f; it's used
    // in failure reports.
    func runIndexTests(t *testing.T, f func(s, sep []byte) int, funcName string, testCases []BinOpTest) {
    	for _, test := range testCases {
    		a := []byte(test.a)
    		b := []byte(test.b)
    		actual := f(a, b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/strings/strings_test.go

    	{"012abcba210", "\xffb", 6},
    	{"012\x80bcb\x80210", "\xffb", 7},
    	{"0123456\xcf\x80abc", "\xcfb\x80", 10},
    }
    
    // Execute f on each test case.  funcName should be the name of f; it's used
    // in failure reports.
    func runIndexTests(t *testing.T, f func(s, sep string) int, funcName string, testCases []IndexTest) {
    	for _, test := range testCases {
    		actual := f(test.s, test.sep)
    		if actual != test.out {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    		if !ecdsa.VerifyASN1(pub, signed, signature) {
    			return errors.New("x509: ECDSA verification failure")
    		}
    		return
    	case ed25519.PublicKey:
    		if pubKeyAlgo != Ed25519 {
    			return signaturePublicKeyAlgoMismatchError(pubKeyAlgo, pub)
    		}
    		if !ed25519.Verify(pub, signed, signature) {
    			return errors.New("x509: Ed25519 verification failure")
    		}
    		return
    	}
    	return ErrUnsupportedAlgorithm
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	}
    	if !req.isReplayable() {
    		// Don't retry non-idempotent requests.
    		return false
    	}
    	if _, ok := err.(transportReadFromServerError); ok {
    		// We got some non-EOF net.Conn.Read failure reading
    		// the 1st response byte from the server.
    		return true
    	}
    	if err == errServerClosedIdle {
    		// The server replied with io.EOF while we were trying to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. src/math/big/int_test.go

    		if actual != expected {
    			t.Errorf("#%d: Jacobi(%d, %d) = %d, but expected %d", i, test.x, test.y, actual, expected)
    		}
    	}
    }
    
    func TestJacobiPanic(t *testing.T) {
    	const failureMsg = "test failure"
    	defer func() {
    		msg := recover()
    		if msg == nil || msg == failureMsg {
    			panic(msg)
    		}
    		t.Log(msg)
    	}()
    	x := NewInt(1)
    	y := NewInt(2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  10. src/crypto/tls/tls_test.go

    		{
    			Certificate: [][]byte{cert},
    			PrivateKey:  k,
    		},
    	}
    	if _, _, err := testHandshake(t, clientConfig, serverConfig); err != nil {
    		t.Fatalf("unexpected failure :%s", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
Back to top