summaryrefslogtreecommitdiffhomepage
path: root/runsc/container/container_test.go
diff options
context:
space:
mode:
authorFabricio Voznika <fvoznika@google.com>2020-05-28 12:24:37 -0700
committergVisor bot <gvisor-bot@google.com>2020-05-28 12:25:57 -0700
commita8c1b326600983abeabd41cbfa0c32ff84cf475a (patch)
tree237cc20f1a442177e398864f7d79e7c9ff5f03ee /runsc/container/container_test.go
parent2fe14b484a662cdc8eec8d6dd5bd5fe6492ba630 (diff)
Automated rollback of changelist 309082540
PiperOrigin-RevId: 313636920
Diffstat (limited to 'runsc/container/container_test.go')
-rw-r--r--runsc/container/container_test.go22
1 files changed, 0 insertions, 22 deletions
diff --git a/runsc/container/container_test.go b/runsc/container/container_test.go
index 1a6d50d0d..d59a1d97e 100644
--- a/runsc/container/container_test.go
+++ b/runsc/container/container_test.go
@@ -1537,28 +1537,6 @@ func TestReadonlyMount(t *testing.T) {
}
}
-func TestBindMountByOption(t *testing.T) {
- for _, conf := range configs(t, overlay) {
- t.Logf("Running test with conf: %+v", conf)
-
- dir, err := ioutil.TempDir(testutil.TmpDir(), "bind-mount")
- spec := testutil.NewSpecWithArgs("/bin/touch", path.Join(dir, "file"))
- if err != nil {
- t.Fatalf("ioutil.TempDir() failed: %v", err)
- }
- spec.Mounts = append(spec.Mounts, specs.Mount{
- Destination: dir,
- Source: dir,
- Type: "none",
- Options: []string{"rw", "bind"},
- })
-
- if err := run(spec, conf); err != nil {
- t.Fatalf("error running sandbox: %v", err)
- }
- }
-}
-
// TestAbbreviatedIDs checks that runsc supports using abbreviated container
// IDs in place of full IDs.
func TestAbbreviatedIDs(t *testing.T) {