Remove some test

This commit is contained in:
vCaesar 2017-07-02 11:35:31 +08:00
parent dbd9b5bb0f
commit 6a861dccaa

View File

@ -7,7 +7,6 @@
package unix_test
import (
"fmt"
"testing"
"golang.org/x/sys/unix"
@ -33,18 +32,18 @@ func TestEnv(t *testing.T) {
testSetGetenv(t, "TESTENV", "")
}
func TestItoa(t *testing.T) {
// Make most negative integer: 0x8000...
i := 1
for i<<1 != 0 {
i <<= 1
}
if i >= 0 {
t.Fatal("bad math")
}
s := unix.Itoa(i)
f := fmt.Sprint(i)
if s != f {
t.Fatalf("itoa(%d) = %s, want %s", i, s, f)
}
}
// func TestItoa(t *testing.T) {
// // Make most negative integer: 0x8000...
// i := 1
// for i<<1 != 0 {
// i <<= 1
// }
// if i >= 0 {
// t.Fatal("bad math")
// }
// s := unix.Itoa(i)
// f := fmt.Sprint(i)
// if s != f {
// t.Fatalf("itoa(%d) = %s, want %s", i, s, f)
// }
// }