remove tinyfmt implementation from a test script

We've had proper build caching for a while now. No need to avoid std
imports like fmt.
pull/337/head
Daniel Martí 4 years ago committed by lu4p
parent adb4f44fb2
commit 4156f35570

@ -2,7 +2,7 @@ env GOPRIVATE=test/main
garble build garble build
exec ./main exec ./main
cmp stderr main.stderr cmp stdout main.stdout
! binsubstr main$exe 'unexportedMethod' 'privateIface' ! binsubstr main$exe 'unexportedMethod' 'privateIface'
@ -11,7 +11,7 @@ cmp stderr main.stderr
# Check that the program works as expected without garble. # Check that the program works as expected without garble.
go build go build
exec ./main exec ./main
cmp stderr main.stderr cmp stdout main.stdout
-- go.mod -- -- go.mod --
module test/main module test/main
@ -21,10 +21,11 @@ go 1.16
package main package main
import ( import (
"fmt"
"test/main/lib1" "test/main/lib1"
"test/main/lib2" "test/main/lib2"
"test/main/lib3" "test/main/lib3"
"test/main/tinyfmt"
) )
type T string type T string
@ -58,8 +59,8 @@ var _ = lib1.Struct1(lib2.Struct2{})
var _ = StructUnnamed(lib2.Struct2{}) var _ = StructUnnamed(lib2.Struct2{})
func main() { func main() {
tinyfmt.Println(T("foo")) fmt.Println(T("foo"))
tinyfmt.Println(T("foo").unexportedMethod()) fmt.Println(T("foo").unexportedMethod())
} }
-- lib1/lib1.go -- -- lib1/lib1.go --
package lib1 package lib1
@ -92,25 +93,6 @@ package lib3
type StructEmbed struct { type StructEmbed struct {
Baz interface{} Baz interface{}
} }
-- tinyfmt/fmt.go -- -- main.stdout --
package tinyfmt
// Println emulates fmt.Println, and allows the main package to indirectly use
// T.String in a realistic way. We don't want to import fmt to avoid compiling
// too many packages, since we don't have build caching yet.
func Println(args ...interface{}) {
for _, arg := range args {
switch arg := arg.(type) {
case interface{String() string}:
print(arg.String())
case string:
print(arg)
default:
panic("unsupported type")
}
}
println()
}
-- main.stderr --
String method for foo String method for foo
unexported method for foo unexported method for foo

Loading…
Cancel
Save