7a9389330e
gcc/: * gcc.c (default_compilers): Add entry for ".go". * common.opt: Add -static-libgo as a driver option. * doc/install.texi (Configuration): Mention libgo as an option for --enable-shared. Mention go as an option for --enable-languages. * doc/invoke.texi (Overall Options): Mention .go as a file name suffix. Mention go as a -x option. * doc/frontends.texi (G++ and GCC): Mention Go as a supported language. * doc/sourcebuild.texi (Top Level): Mention libgo. * doc/standards.texi (Standards): Add section on Go language. Move references for other languages into their own section. * doc/contrib.texi (Contributors): Mention that I contributed the Go frontend. gcc/testsuite/: * lib/go.exp: New file. * lib/go-dg.exp: New file. * lib/go-torture.exp: New file. * lib/target-supports.exp (check_compile): Match // Go. From-SVN: r167407
78 lines
1.9 KiB
Go
78 lines
1.9 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 (
|
|
"flag"
|
|
"regexp"
|
|
"testing"
|
|
)
|
|
|
|
var runErrorTest = flag.Bool("run_error_test", false, "let TestDialError check for dns errors")
|
|
|
|
type DialErrorTest struct {
|
|
Net string
|
|
Laddr string
|
|
Raddr string
|
|
Pattern string
|
|
}
|
|
|
|
var dialErrorTests = []DialErrorTest{
|
|
{
|
|
"datakit", "", "mh/astro/r70",
|
|
"dial datakit mh/astro/r70: unknown network datakit",
|
|
},
|
|
{
|
|
"tcp", "", "127.0.0.1:☺",
|
|
"dial tcp 127.0.0.1:☺: unknown port tcp/☺",
|
|
},
|
|
{
|
|
"tcp", "", "no-such-name.google.com.:80",
|
|
"dial tcp no-such-name.google.com.:80: lookup no-such-name.google.com.( on .*)?: no (.*)",
|
|
},
|
|
{
|
|
"tcp", "", "no-such-name.no-such-top-level-domain.:80",
|
|
"dial tcp no-such-name.no-such-top-level-domain.:80: lookup no-such-name.no-such-top-level-domain.( on .*)?: no (.*)",
|
|
},
|
|
{
|
|
"tcp", "", "no-such-name:80",
|
|
`dial tcp no-such-name:80: lookup no-such-name\.(.*\.)?( on .*)?: no (.*)`,
|
|
},
|
|
{
|
|
"tcp", "", "mh/astro/r70:http",
|
|
"dial tcp mh/astro/r70:http: lookup mh/astro/r70: invalid domain name",
|
|
},
|
|
{
|
|
"unix", "", "/etc/file-not-found",
|
|
"dial unix /etc/file-not-found: [nN]o such file or directory",
|
|
},
|
|
{
|
|
"unix", "", "/etc/",
|
|
"dial unix /etc/: ([pP]ermission denied|[sS]ocket operation on non-socket|[cC]onnection refused)",
|
|
},
|
|
}
|
|
|
|
func TestDialError(t *testing.T) {
|
|
if !*runErrorTest {
|
|
t.Logf("test disabled; use --run_error_test to enable")
|
|
return
|
|
}
|
|
for i, tt := range dialErrorTests {
|
|
c, e := Dial(tt.Net, tt.Laddr, tt.Raddr)
|
|
if c != nil {
|
|
c.Close()
|
|
}
|
|
if e == nil {
|
|
t.Errorf("#%d: nil error, want match for %#q", i, tt.Pattern)
|
|
continue
|
|
}
|
|
s := e.String()
|
|
match, _ := regexp.MatchString(tt.Pattern, s)
|
|
if !match {
|
|
t.Errorf("#%d: %q, want match for %#q", i, s, tt.Pattern)
|
|
}
|
|
}
|
|
}
|