Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestMagicExhaustive16 (0.26 sec)

  1. src/cmd/compile/internal/ssa/magic_test.go

    package ssa
    
    import (
    	"math/big"
    	"testing"
    )
    
    func TestMagicExhaustive8(t *testing.T) {
    	testMagicExhaustive(t, 8)
    }
    func TestMagicExhaustive8U(t *testing.T) {
    	testMagicExhaustiveU(t, 8)
    }
    func TestMagicExhaustive16(t *testing.T) {
    	if testing.Short() {
    		t.Skip("slow test; skipping")
    	}
    	testMagicExhaustive(t, 16)
    }
    func TestMagicExhaustive16U(t *testing.T) {
    	if testing.Short() {
    		t.Skip("slow test; skipping")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 22:02:07 UTC 2019
    - 9.1K bytes
    - Viewed (0)
Back to top