Ignore build output, removed some profiling code.
This commit is contained in:
parent
a28269800a
commit
c67a91b1ca
|
@ -1,5 +1,5 @@
|
|||
# Build output
|
||||
cmd/toml-test-decoder/toml-test-decoder
|
||||
cmd/burntsushi-tester/burntsushi-tester
|
||||
|
||||
# ---> Vim
|
||||
# Swap
|
||||
|
|
Binary file not shown.
|
@ -32,7 +32,7 @@ func main() {
|
|||
flag.Usage()
|
||||
}
|
||||
|
||||
toml, err := parse.Run(os.Stdin)
|
||||
toml, err := parse.RunWithoutSanityChecks(os.Stdin)
|
||||
if err != nil {
|
||||
log.Fatalf("Error decoding TOML: %s", err)
|
||||
} else {
|
||||
|
|
|
@ -14,7 +14,6 @@ import (
|
|||
"time"
|
||||
|
||||
"git.makaay.nl/mauricem/go-toml/parse"
|
||||
"github.com/pkg/profile"
|
||||
)
|
||||
|
||||
func Test_Invalid(t *testing.T) {
|
||||
|
@ -38,7 +37,6 @@ func Test_Invalid(t *testing.T) {
|
|||
}
|
||||
|
||||
func Test_Valid(t *testing.T) {
|
||||
defer profile.Start().Stop()
|
||||
for _, suite := range getTestSuites("valid") {
|
||||
success := 0
|
||||
fail := 0
|
||||
|
|
Loading…
Reference in New Issue