From: Ian Lance Taylor Date: Sun, 17 May 2009 06:12:28 +0000 (-0700) Subject: Don't bother to import "os" just so that we can call X-Git-Tag: weekly.2009-11-06~1620 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=49fceff6af48269e35e39de99861c68263c85ebe;p=gostls13.git Don't bother to import "os" just so that we can call os.Exit(0) at the end of main. R=rsc DELTA=6 (0 added, 6 deleted, 0 changed) OCL=28967 CL=28969 --- diff --git a/test/235.go b/test/235.go index b8621cc7e5..fe3024c613 100644 --- a/test/235.go +++ b/test/235.go @@ -6,8 +6,6 @@ package main -import "os" - type T chan uint64; func M(f uint64) (in, out T) { @@ -67,5 +65,4 @@ func main() { x = min(xs); if x != OUT[i] { panic("bad: ", x, " should be ", OUT[i]); } } - os.Exit(0); } diff --git a/test/chan/sieve.go b/test/chan/sieve.go index 49f1c105e2..b47615f2f5 100644 --- a/test/chan/sieve.go +++ b/test/chan/sieve.go @@ -9,8 +9,6 @@ package main -import "os" - // Send the sequence 2, 3, 4, ... to channel 'ch'. func Generate(ch chan<- int) { for i := 2; ; i++ { @@ -49,5 +47,4 @@ func main() { for i := 0; i < len(a); i++ { if x := <-primes; x != a[i] { panic(x, " != ", a[i]) } } - os.Exit(0); }