/prebuilts/go/darwin-x86/misc/cgo/test/ |
issue6612.go | 38 t.Errorf("C.myvar = %d, want 5", v) 41 t.Errorf("C.myvar_def = %d, want 5", v) 44 t.Errorf("C.mytext = %q, want %q", s, "abcdef") 47 t.Errorf("C.mytext_def = %q, want %q", s, "abcdef") 50 t.Errorf("C.myenum = %v, want 1234", c) 53 t.Errorf("C.myenum_def = %v, want 1234", c) 58 t.Errorf("C.myenum as const = %v, want 1234", c) 64 t.Errorf("C.myenum as const = %v, want 1234", c) 68 t.Errorf("C.myint_def = %v, want 12345", c) 73 t.Errorf("C.myint as const = %v, want 12345", c [all...] |
/prebuilts/go/linux-x86/misc/cgo/test/ |
issue6612.go | 38 t.Errorf("C.myvar = %d, want 5", v) 41 t.Errorf("C.myvar_def = %d, want 5", v) 44 t.Errorf("C.mytext = %q, want %q", s, "abcdef") 47 t.Errorf("C.mytext_def = %q, want %q", s, "abcdef") 50 t.Errorf("C.myenum = %v, want 1234", c) 53 t.Errorf("C.myenum_def = %v, want 1234", c) 58 t.Errorf("C.myenum as const = %v, want 1234", c) 64 t.Errorf("C.myenum as const = %v, want 1234", c) 68 t.Errorf("C.myint_def = %v, want 12345", c) 73 t.Errorf("C.myint as const = %v, want 12345", c [all...] |
/prebuilts/go/darwin-x86/src/cmd/go/testdata/src/xtestonly/ |
f_test.go | 10 t.Errorf("f.F() = %d, want 42", x)
|
/prebuilts/go/linux-x86/src/cmd/go/testdata/src/xtestonly/ |
f_test.go | 10 t.Errorf("f.F() = %d, want 42", x)
|
/prebuilts/go/darwin-x86/src/errors/ |
errors_test.go | 16 t.Errorf(`New("abc") == New("abc")`) 19 t.Errorf(`New("abc") == New("xyz")`) 25 t.Errorf(`err != err`) 32 t.Errorf(`New("abc").Error() = %q, want %q`, err.Error(), "abc") 44 // The fmt package's Errorf function lets us use the package's formatting 48 err := fmt.Errorf("user %q (id %d) not found", name, id)
|
/prebuilts/go/linux-x86/src/errors/ |
errors_test.go | 16 t.Errorf(`New("abc") == New("abc")`) 19 t.Errorf(`New("abc") == New("xyz")`) 25 t.Errorf(`err != err`) 32 t.Errorf(`New("abc").Error() = %q, want %q`, err.Error(), "abc") 44 // The fmt package's Errorf function lets us use the package's formatting 48 err := fmt.Errorf("user %q (id %d) not found", name, id)
|
/prebuilts/go/darwin-x86/src/cmd/vet/testdata/ |
unused.go | 16 fmt.Errorf("") // ERROR "result of fmt.Errorf call not used" 17 _ = fmt.Errorf("")
|
/prebuilts/go/darwin-x86/src/go/token/ |
serialize_test.go | 29 return fmt.Errorf("different bases: %d != %d", p.base, q.base) 33 return fmt.Errorf("different number of files: %d != %d", len(p.files), len(q.files)) 39 return fmt.Errorf("wrong fileset for %q", f.name) 42 return fmt.Errorf("wrong fileset for %q", g.name) 45 return fmt.Errorf("different filenames: %q != %q", f.name, g.name) 48 return fmt.Errorf("different base for %q: %d != %d", f.name, f.base, g.base) 51 return fmt.Errorf("different size for %q: %d != %d", f.name, f.size, g.size) 56 return fmt.Errorf("different offsets for %q", f.name) 62 return fmt.Errorf("different infos for %q", f.name) 77 t.Errorf("writing fileset failed: %s", err [all...] |
/prebuilts/go/darwin-x86/src/os/user/ |
lookup_stubs.go | 19 return nil, fmt.Errorf("user: Current not implemented on %s/%s", runtime.GOOS, runtime.GOARCH) 23 return nil, fmt.Errorf("user: Lookup not implemented on %s/%s", runtime.GOOS, runtime.GOARCH) 27 return nil, fmt.Errorf("user: LookupId not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
|
user_test.go | 26 t.Errorf("didn't get a HomeDir") 29 t.Errorf("didn't get a username") 35 t.Errorf("got Uid=%q; want %q", got.Uid, want.Uid) 38 t.Errorf("got Username=%q; want %q", got.Username, want.Username) 41 t.Errorf("got Name=%q; want %q", got.Name, want.Name) 48 t.Errorf("got Gid=%q; want %q", got.Gid, want.Gid) 51 t.Errorf("got HomeDir=%q; want %q", got.HomeDir, want.HomeDir)
|
/prebuilts/go/linux-x86/src/cmd/vet/testdata/ |
unused.go | 16 fmt.Errorf("") // ERROR "result of fmt.Errorf call not used" 17 _ = fmt.Errorf("")
|
/prebuilts/go/linux-x86/src/go/token/ |
serialize_test.go | 29 return fmt.Errorf("different bases: %d != %d", p.base, q.base) 33 return fmt.Errorf("different number of files: %d != %d", len(p.files), len(q.files)) 39 return fmt.Errorf("wrong fileset for %q", f.name) 42 return fmt.Errorf("wrong fileset for %q", g.name) 45 return fmt.Errorf("different filenames: %q != %q", f.name, g.name) 48 return fmt.Errorf("different base for %q: %d != %d", f.name, f.base, g.base) 51 return fmt.Errorf("different size for %q: %d != %d", f.name, f.size, g.size) 56 return fmt.Errorf("different offsets for %q", f.name) 62 return fmt.Errorf("different infos for %q", f.name) 77 t.Errorf("writing fileset failed: %s", err [all...] |
/prebuilts/go/linux-x86/src/os/user/ |
lookup_stubs.go | 19 return nil, fmt.Errorf("user: Current not implemented on %s/%s", runtime.GOOS, runtime.GOARCH) 23 return nil, fmt.Errorf("user: Lookup not implemented on %s/%s", runtime.GOOS, runtime.GOARCH) 27 return nil, fmt.Errorf("user: LookupId not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
|
/prebuilts/go/darwin-x86/src/cmd/internal/rsc.io/arm/armasm/ |
decode_test.go | 32 t.Errorf("parsing %q: missing | separator", f[0]) 36 t.Errorf("parsing %q: misaligned | separator", f[0]) 41 t.Errorf("parsing %q: %v", f[0], err) 46 t.Errorf("invalid mode %q in: %s", f[1], line) 61 t.Errorf("unknown syntax %q", syntax) 66 t.Errorf("Decode(%s) [%s] = %s, %d, want %s, %d", f[0], syntax, out, inst.Len, asm, size)
|
/prebuilts/go/darwin-x86/src/io/ioutil/ |
tempfile_test.go | 17 t.Errorf("TempFile(`/_not_exists_`, `foo`) = %v, %v", f, err) 23 t.Errorf("TempFile(dir, `ioutil_test`) = %v, %v", f, err) 30 t.Errorf("TempFile(`"+dir+"`, `ioutil_test`) created bad name %s", f.Name()) 38 t.Errorf("TempDir(`/_not_exists_`, `foo`) = %v, %v", name, err) 44 t.Errorf("TempDir(dir, `ioutil_test`) = %v, %v", name, err) 50 t.Errorf("TempDir(`"+dir+"`, `ioutil_test`) created bad name %s", name)
|
/prebuilts/go/linux-x86/src/cmd/internal/rsc.io/arm/armasm/ |
decode_test.go | 32 t.Errorf("parsing %q: missing | separator", f[0]) 36 t.Errorf("parsing %q: misaligned | separator", f[0]) 41 t.Errorf("parsing %q: %v", f[0], err) 46 t.Errorf("invalid mode %q in: %s", f[1], line) 61 t.Errorf("unknown syntax %q", syntax) 66 t.Errorf("Decode(%s) [%s] = %s, %d, want %s, %d", f[0], syntax, out, inst.Len, asm, size)
|
/prebuilts/go/linux-x86/src/io/ioutil/ |
tempfile_test.go | 17 t.Errorf("TempFile(`/_not_exists_`, `foo`) = %v, %v", f, err) 23 t.Errorf("TempFile(dir, `ioutil_test`) = %v, %v", f, err) 30 t.Errorf("TempFile(`"+dir+"`, `ioutil_test`) created bad name %s", f.Name()) 38 t.Errorf("TempDir(`/_not_exists_`, `foo`) = %v, %v", name, err) 44 t.Errorf("TempDir(dir, `ioutil_test`) = %v, %v", name, err) 50 t.Errorf("TempDir(`"+dir+"`, `ioutil_test`) created bad name %s", name)
|
/prebuilts/go/darwin-x86/src/cmd/internal/rsc.io/x86/x86asm/ |
inst_test.go | 15 t.Errorf("regNames[%d] is missing", int(r)) 17 t.Errorf("Reg(%d).String() = %s, want proper name", int(r), s)
|
/prebuilts/go/linux-x86/src/cmd/internal/rsc.io/x86/x86asm/ |
inst_test.go | 15 t.Errorf("regNames[%d] is missing", int(r)) 17 t.Errorf("Reg(%d).String() = %s, want proper name", int(r), s)
|
/build/blueprint/ |
ninja_strings_test.go | 113 t.Errorf("incorrect variable list:") 114 t.Errorf(" input: %q", testCase.input) 115 t.Errorf(" expected: %#v", expectedVars) 116 t.Errorf(" got: %#v", output.variables) 119 t.Errorf("incorrect string list:") 120 t.Errorf(" input: %q", testCase.input) 121 t.Errorf(" expected: %#v", testCase.strs) 122 t.Errorf(" got: %#v", output.strings) 130 t.Errorf("unexpected error:") 131 t.Errorf(" input: %q", testCase.input [all...] |
/prebuilts/go/darwin-x86/misc/cgo/nocgo/ |
nocgo_test.go | 12 t.Errorf("got %d, want %d", i, 42)
|
/prebuilts/go/darwin-x86/src/net/http/cgi/ |
child_test.go | 32 t.Errorf("expected UserAgent %q; got %q", e, g) 35 t.Errorf("expected Method %q; got %q", e, g) 38 t.Errorf("expected Content-Type %q; got %q", e, g) 41 t.Errorf("expected ContentLength %d; got %d", e, g) 44 t.Errorf("expected Referer %q; got %q", e, g) 50 t.Errorf("expected Foo-Bar %q; got %q", e, g) 53 t.Errorf("expected URL %q; got %q", e, g) 56 t.Errorf("expected FormValue(a) %q; got %q", e, g) 59 t.Errorf("unexpected nil Trailer") 62 t.Errorf("expected nil TLS" [all...] |
/prebuilts/go/linux-x86/misc/cgo/nocgo/ |
nocgo_test.go | 12 t.Errorf("got %d, want %d", i, 42)
|
/prebuilts/go/linux-x86/src/net/http/cgi/ |
child_test.go | 32 t.Errorf("expected UserAgent %q; got %q", e, g) 35 t.Errorf("expected Method %q; got %q", e, g) 38 t.Errorf("expected Content-Type %q; got %q", e, g) 41 t.Errorf("expected ContentLength %d; got %d", e, g) 44 t.Errorf("expected Referer %q; got %q", e, g) 50 t.Errorf("expected Foo-Bar %q; got %q", e, g) 53 t.Errorf("expected URL %q; got %q", e, g) 56 t.Errorf("expected FormValue(a) %q; got %q", e, g) 59 t.Errorf("unexpected nil Trailer") 62 t.Errorf("expected nil TLS" [all...] |
/prebuilts/go/darwin-x86/src/internal/singleflight/ |
singleflight_test.go | 22 t.Errorf("Do = %v; want %v", got, want) 25 t.Errorf("Do error = %v", err) 36 t.Errorf("Do error = %v; want someErr %v", err, someErr) 39 t.Errorf("unexpected non-nil value %#v", v) 71 t.Errorf("Do error: %v", err) 75 t.Errorf("Do = %T %v; want %q", v, v, "bar") 85 t.Errorf("number of calls = %d; want over 0 and less than %d", got, n)
|