tstest/integration: don't include stdlib deps in go generate output
Causes too much churn for zero benefit. Change-Id: I838f8cdb5723f122f11dd4bbce5e9c07755c3cd9 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
parent
c467ed0b62
commit
6d82a18916
@ -15,6 +15,7 @@
|
|||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
@ -52,6 +53,10 @@ func generate(goos string) {
|
|||||||
// process and can cache a prior success when a dependency changes.
|
// process and can cache a prior success when a dependency changes.
|
||||||
`)
|
`)
|
||||||
for _, dep := range x.Imports {
|
for _, dep := range x.Imports {
|
||||||
|
if !strings.Contains(dep, ".") {
|
||||||
|
// Omit stanard library deps.
|
||||||
|
continue
|
||||||
|
}
|
||||||
fmt.Fprintf(&out, "\t_ %q\n", dep)
|
fmt.Fprintf(&out, "\t_ %q\n", dep)
|
||||||
}
|
}
|
||||||
fmt.Fprintf(&out, ")\n")
|
fmt.Fprintf(&out, ")\n")
|
||||||
|
@ -11,31 +11,7 @@
|
|||||||
// Otherwise cmd/go never sees that we depend on these packages'
|
// Otherwise cmd/go never sees that we depend on these packages'
|
||||||
// transitive deps when we run "go install tailscaled" in a child
|
// transitive deps when we run "go install tailscaled" in a child
|
||||||
// process and can cache a prior success when a dependency changes.
|
// process and can cache a prior success when a dependency changes.
|
||||||
_ "context"
|
|
||||||
_ "crypto/tls"
|
|
||||||
_ "encoding/json"
|
|
||||||
_ "errors"
|
|
||||||
_ "flag"
|
|
||||||
_ "fmt"
|
|
||||||
_ "inet.af/netaddr"
|
_ "inet.af/netaddr"
|
||||||
_ "io"
|
|
||||||
_ "io/ioutil"
|
|
||||||
_ "log"
|
|
||||||
_ "net"
|
|
||||||
_ "net/http"
|
|
||||||
_ "net/http/httptrace"
|
|
||||||
_ "net/http/httputil"
|
|
||||||
_ "net/http/pprof"
|
|
||||||
_ "net/url"
|
|
||||||
_ "os"
|
|
||||||
_ "os/exec"
|
|
||||||
_ "os/signal"
|
|
||||||
_ "path/filepath"
|
|
||||||
_ "runtime"
|
|
||||||
_ "runtime/debug"
|
|
||||||
_ "strconv"
|
|
||||||
_ "strings"
|
|
||||||
_ "syscall"
|
|
||||||
_ "tailscale.com/chirp"
|
_ "tailscale.com/chirp"
|
||||||
_ "tailscale.com/derp/derphttp"
|
_ "tailscale.com/derp/derphttp"
|
||||||
_ "tailscale.com/ipn"
|
_ "tailscale.com/ipn"
|
||||||
@ -61,5 +37,4 @@
|
|||||||
_ "tailscale.com/wgengine/monitor"
|
_ "tailscale.com/wgengine/monitor"
|
||||||
_ "tailscale.com/wgengine/netstack"
|
_ "tailscale.com/wgengine/netstack"
|
||||||
_ "tailscale.com/wgengine/router"
|
_ "tailscale.com/wgengine/router"
|
||||||
_ "time"
|
|
||||||
)
|
)
|
||||||
|
@ -11,29 +11,7 @@
|
|||||||
// Otherwise cmd/go never sees that we depend on these packages'
|
// Otherwise cmd/go never sees that we depend on these packages'
|
||||||
// transitive deps when we run "go install tailscaled" in a child
|
// transitive deps when we run "go install tailscaled" in a child
|
||||||
// process and can cache a prior success when a dependency changes.
|
// process and can cache a prior success when a dependency changes.
|
||||||
_ "context"
|
|
||||||
_ "crypto/tls"
|
|
||||||
_ "encoding/json"
|
|
||||||
_ "errors"
|
|
||||||
_ "flag"
|
|
||||||
_ "fmt"
|
|
||||||
_ "inet.af/netaddr"
|
_ "inet.af/netaddr"
|
||||||
_ "io"
|
|
||||||
_ "io/ioutil"
|
|
||||||
_ "log"
|
|
||||||
_ "net"
|
|
||||||
_ "net/http"
|
|
||||||
_ "net/http/httptrace"
|
|
||||||
_ "net/http/httputil"
|
|
||||||
_ "net/http/pprof"
|
|
||||||
_ "net/url"
|
|
||||||
_ "os"
|
|
||||||
_ "os/signal"
|
|
||||||
_ "runtime"
|
|
||||||
_ "runtime/debug"
|
|
||||||
_ "strconv"
|
|
||||||
_ "strings"
|
|
||||||
_ "syscall"
|
|
||||||
_ "tailscale.com/chirp"
|
_ "tailscale.com/chirp"
|
||||||
_ "tailscale.com/derp/derphttp"
|
_ "tailscale.com/derp/derphttp"
|
||||||
_ "tailscale.com/ipn"
|
_ "tailscale.com/ipn"
|
||||||
@ -59,5 +37,4 @@
|
|||||||
_ "tailscale.com/wgengine/monitor"
|
_ "tailscale.com/wgengine/monitor"
|
||||||
_ "tailscale.com/wgengine/netstack"
|
_ "tailscale.com/wgengine/netstack"
|
||||||
_ "tailscale.com/wgengine/router"
|
_ "tailscale.com/wgengine/router"
|
||||||
_ "time"
|
|
||||||
)
|
)
|
||||||
|
@ -11,29 +11,7 @@
|
|||||||
// Otherwise cmd/go never sees that we depend on these packages'
|
// Otherwise cmd/go never sees that we depend on these packages'
|
||||||
// transitive deps when we run "go install tailscaled" in a child
|
// transitive deps when we run "go install tailscaled" in a child
|
||||||
// process and can cache a prior success when a dependency changes.
|
// process and can cache a prior success when a dependency changes.
|
||||||
_ "context"
|
|
||||||
_ "crypto/tls"
|
|
||||||
_ "encoding/json"
|
|
||||||
_ "errors"
|
|
||||||
_ "flag"
|
|
||||||
_ "fmt"
|
|
||||||
_ "inet.af/netaddr"
|
_ "inet.af/netaddr"
|
||||||
_ "io"
|
|
||||||
_ "io/ioutil"
|
|
||||||
_ "log"
|
|
||||||
_ "net"
|
|
||||||
_ "net/http"
|
|
||||||
_ "net/http/httptrace"
|
|
||||||
_ "net/http/httputil"
|
|
||||||
_ "net/http/pprof"
|
|
||||||
_ "net/url"
|
|
||||||
_ "os"
|
|
||||||
_ "os/signal"
|
|
||||||
_ "runtime"
|
|
||||||
_ "runtime/debug"
|
|
||||||
_ "strconv"
|
|
||||||
_ "strings"
|
|
||||||
_ "syscall"
|
|
||||||
_ "tailscale.com/chirp"
|
_ "tailscale.com/chirp"
|
||||||
_ "tailscale.com/derp/derphttp"
|
_ "tailscale.com/derp/derphttp"
|
||||||
_ "tailscale.com/ipn"
|
_ "tailscale.com/ipn"
|
||||||
@ -59,5 +37,4 @@
|
|||||||
_ "tailscale.com/wgengine/monitor"
|
_ "tailscale.com/wgengine/monitor"
|
||||||
_ "tailscale.com/wgengine/netstack"
|
_ "tailscale.com/wgengine/netstack"
|
||||||
_ "tailscale.com/wgengine/router"
|
_ "tailscale.com/wgengine/router"
|
||||||
_ "time"
|
|
||||||
)
|
)
|
||||||
|
@ -11,29 +11,7 @@
|
|||||||
// Otherwise cmd/go never sees that we depend on these packages'
|
// Otherwise cmd/go never sees that we depend on these packages'
|
||||||
// transitive deps when we run "go install tailscaled" in a child
|
// transitive deps when we run "go install tailscaled" in a child
|
||||||
// process and can cache a prior success when a dependency changes.
|
// process and can cache a prior success when a dependency changes.
|
||||||
_ "context"
|
|
||||||
_ "crypto/tls"
|
|
||||||
_ "encoding/json"
|
|
||||||
_ "errors"
|
|
||||||
_ "flag"
|
|
||||||
_ "fmt"
|
|
||||||
_ "inet.af/netaddr"
|
_ "inet.af/netaddr"
|
||||||
_ "io"
|
|
||||||
_ "io/ioutil"
|
|
||||||
_ "log"
|
|
||||||
_ "net"
|
|
||||||
_ "net/http"
|
|
||||||
_ "net/http/httptrace"
|
|
||||||
_ "net/http/httputil"
|
|
||||||
_ "net/http/pprof"
|
|
||||||
_ "net/url"
|
|
||||||
_ "os"
|
|
||||||
_ "os/signal"
|
|
||||||
_ "runtime"
|
|
||||||
_ "runtime/debug"
|
|
||||||
_ "strconv"
|
|
||||||
_ "strings"
|
|
||||||
_ "syscall"
|
|
||||||
_ "tailscale.com/chirp"
|
_ "tailscale.com/chirp"
|
||||||
_ "tailscale.com/derp/derphttp"
|
_ "tailscale.com/derp/derphttp"
|
||||||
_ "tailscale.com/ipn"
|
_ "tailscale.com/ipn"
|
||||||
@ -59,5 +37,4 @@
|
|||||||
_ "tailscale.com/wgengine/monitor"
|
_ "tailscale.com/wgengine/monitor"
|
||||||
_ "tailscale.com/wgengine/netstack"
|
_ "tailscale.com/wgengine/netstack"
|
||||||
_ "tailscale.com/wgengine/router"
|
_ "tailscale.com/wgengine/router"
|
||||||
_ "time"
|
|
||||||
)
|
)
|
||||||
|
@ -11,33 +11,11 @@
|
|||||||
// Otherwise cmd/go never sees that we depend on these packages'
|
// Otherwise cmd/go never sees that we depend on these packages'
|
||||||
// transitive deps when we run "go install tailscaled" in a child
|
// transitive deps when we run "go install tailscaled" in a child
|
||||||
// process and can cache a prior success when a dependency changes.
|
// process and can cache a prior success when a dependency changes.
|
||||||
_ "context"
|
|
||||||
_ "crypto/tls"
|
|
||||||
_ "encoding/json"
|
|
||||||
_ "errors"
|
|
||||||
_ "flag"
|
|
||||||
_ "fmt"
|
|
||||||
_ "golang.org/x/sys/windows"
|
_ "golang.org/x/sys/windows"
|
||||||
_ "golang.org/x/sys/windows/svc"
|
_ "golang.org/x/sys/windows/svc"
|
||||||
_ "golang.org/x/sys/windows/svc/mgr"
|
_ "golang.org/x/sys/windows/svc/mgr"
|
||||||
_ "golang.zx2c4.com/wireguard/windows/tunnel/winipcfg"
|
_ "golang.zx2c4.com/wireguard/windows/tunnel/winipcfg"
|
||||||
_ "inet.af/netaddr"
|
_ "inet.af/netaddr"
|
||||||
_ "io"
|
|
||||||
_ "io/ioutil"
|
|
||||||
_ "log"
|
|
||||||
_ "net"
|
|
||||||
_ "net/http"
|
|
||||||
_ "net/http/httptrace"
|
|
||||||
_ "net/http/httputil"
|
|
||||||
_ "net/http/pprof"
|
|
||||||
_ "net/url"
|
|
||||||
_ "os"
|
|
||||||
_ "os/signal"
|
|
||||||
_ "runtime"
|
|
||||||
_ "runtime/debug"
|
|
||||||
_ "strconv"
|
|
||||||
_ "strings"
|
|
||||||
_ "syscall"
|
|
||||||
_ "tailscale.com/derp/derphttp"
|
_ "tailscale.com/derp/derphttp"
|
||||||
_ "tailscale.com/ipn"
|
_ "tailscale.com/ipn"
|
||||||
_ "tailscale.com/ipn/ipnserver"
|
_ "tailscale.com/ipn/ipnserver"
|
||||||
@ -65,5 +43,4 @@
|
|||||||
_ "tailscale.com/wgengine/monitor"
|
_ "tailscale.com/wgengine/monitor"
|
||||||
_ "tailscale.com/wgengine/netstack"
|
_ "tailscale.com/wgengine/netstack"
|
||||||
_ "tailscale.com/wgengine/router"
|
_ "tailscale.com/wgengine/router"
|
||||||
_ "time"
|
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user