Fix integration test for golang 1.13
Signed-off-by: Lantao Liu <lantaol@google.com>
This commit is contained in:
parent
9a1e3655ed
commit
2a9a982ae3
@ -22,6 +22,7 @@ import (
|
|||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net"
|
"net"
|
||||||
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
@ -63,11 +64,12 @@ var criRoot = flag.String("cri-root", "/var/lib/containerd/io.containerd.grpc.v1
|
|||||||
var runtimeHandler = flag.String("runtime-handler", "", "The runtime handler to use in the test.")
|
var runtimeHandler = flag.String("runtime-handler", "", "The runtime handler to use in the test.")
|
||||||
var containerdBin = flag.String("containerd-bin", "containerd", "The containerd binary name. The name is used to restart containerd during test.")
|
var containerdBin = flag.String("containerd-bin", "containerd", "The containerd binary name. The name is used to restart containerd during test.")
|
||||||
|
|
||||||
func init() {
|
func TestMain(m *testing.M) {
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
if err := ConnectDaemons(); err != nil {
|
if err := ConnectDaemons(); err != nil {
|
||||||
logrus.WithError(err).Fatalf("Failed to connect daemons")
|
logrus.WithError(err).Fatalf("Failed to connect daemons")
|
||||||
}
|
}
|
||||||
|
os.Exit(m.Run())
|
||||||
}
|
}
|
||||||
|
|
||||||
// ConnectDaemons connect cri plugin and containerd, and initialize the clients.
|
// ConnectDaemons connect cri plugin and containerd, and initialize the clients.
|
Loading…
Reference in New Issue
Block a user