summaryrefslogtreecommitdiffhomepage
path: root/runsc/test/root
diff options
context:
space:
mode:
authorMichael Pratt <mpratt@google.com>2018-11-27 09:24:17 -0800
committerShentubot <shentubot@google.com>2018-11-27 09:25:20 -0800
commit071aeea9d3ff783b2946ef291b1c440aa9b21b88 (patch)
treec78950fd2c4557ebb6e676ec7eb37a0dc0baeabb /runsc/test/root
parentb3b60ea29adf9415c9c7b98ba331dacd92f231b7 (diff)
Disable crictl tests
gvisor-containerd-shim installation is currently broken. PiperOrigin-RevId: 223002877 Change-Id: I2b890c5bf602a96c475c3805f24852ead8593a35
Diffstat (limited to 'runsc/test/root')
-rw-r--r--runsc/test/root/crictl_test.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/runsc/test/root/crictl_test.go b/runsc/test/root/crictl_test.go
index 556d95fff..45cbec6b5 100644
--- a/runsc/test/root/crictl_test.go
+++ b/runsc/test/root/crictl_test.go
@@ -37,6 +37,9 @@ import (
// Tests for crictl have to be run as root (rather than in a user namespace)
// because crictl creates named network namespaces in /var/run/netns/.
func TestCrictlSanity(t *testing.T) {
+ // FIXME
+ t.Skip("crictl installation broken")
+
// Setup containerd and crictl.
crictl, cleanup, err := setup(t)
if err != nil {
@@ -59,6 +62,9 @@ func TestCrictlSanity(t *testing.T) {
}
}
func TestMountPaths(t *testing.T) {
+ // FIXME
+ t.Skip("crictl installation broken")
+
// Setup containerd and crictl.
crictl, cleanup, err := setup(t)
if err != nil {
@@ -81,6 +87,9 @@ func TestMountPaths(t *testing.T) {
}
}
func TestMountOverSymlinks(t *testing.T) {
+ // FIXME
+ t.Skip("crictl installation broken")
+
// Setup containerd and crictl.
crictl, cleanup, err := setup(t)
if err != nil {