Files
clang-p2996/llgo/third_party/gofrontend/libgo/go/net/parse_test.go
Andrew Wilkins 6436a4abd7 [llgo] Roll gofrontend forward
Switch gofrontend to using go.googlesource.com, and
update to 81eb6a3f425b2158c67ee32c0cc973a72ce9d6be.

There are various changes required to update to the
go 1.5 runtime:

typemap.go is changed to accommodate the change in representation for equal/hash algorithms, and the removal of the zero value/type.
CMakeLists.txt is updated to add the build tree to the package search path, so internal packages, which are not installed, are found.
various files changes due to removal of __go_new_nopointers; the same change as in D11863, but with NoUnwindAttribute added to the added runtime functions which are called with "callOnly".
minor cleanups in ssa.go while investigating issues with unwinding/panic handling.

Differential Revisision: http://reviews.llvm.org/D15188

llvm-svn: 263536
2016-03-15 05:36:43 +00:00

80 lines
1.7 KiB
Go

// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package net
import (
"bufio"
"os"
"runtime"
"testing"
)
func TestReadLine(t *testing.T) {
// /etc/services file does not exist on android, plan9, windows.
switch runtime.GOOS {
case "android", "plan9", "windows":
t.Skipf("not supported on %s", runtime.GOOS)
}
filename := "/etc/services" // a nice big file
fd, err := os.Open(filename)
if err != nil {
t.Fatal(err)
}
defer fd.Close()
br := bufio.NewReader(fd)
file, err := open(filename)
if file == nil {
t.Fatal(err)
}
defer file.close()
lineno := 1
byteno := 0
for {
bline, berr := br.ReadString('\n')
if n := len(bline); n > 0 {
bline = bline[0 : n-1]
}
line, ok := file.readLine()
if (berr != nil) != !ok || bline != line {
t.Fatalf("%s:%d (#%d)\nbufio => %q, %v\nnet => %q, %v", filename, lineno, byteno, bline, berr, line, ok)
}
if !ok {
break
}
lineno++
byteno += len(line) + 1
}
}
func TestGoDebugString(t *testing.T) {
defer os.Setenv("GODEBUG", os.Getenv("GODEBUG"))
tests := []struct {
godebug string
key string
want string
}{
{"", "foo", ""},
{"foo=", "foo", ""},
{"foo=bar", "foo", "bar"},
{"foo=bar,", "foo", "bar"},
{"foo,foo=bar,", "foo", "bar"},
{"foo1=bar,foo=bar,", "foo", "bar"},
{"foo=bar,foo=bar,", "foo", "bar"},
{"foo=", "foo", ""},
{"foo", "foo", ""},
{",foo", "foo", ""},
{"foo=bar,baz", "loooooooong", ""},
}
for _, tt := range tests {
os.Setenv("GODEBUG", tt.godebug)
if got := goDebugString(tt.key); got != tt.want {
t.Errorf("for %q, goDebugString(%q) = %q; want %q", tt.godebug, tt.key, got, tt.want)
}
}
}