diff options
author | Nicolas Lacasse <nlacasse@google.com> | 2020-05-13 17:35:04 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-05-13 17:36:37 -0700 |
commit | db655f020ea556524f0e341e538e81c16d4f95e7 (patch) | |
tree | 0929921ff64e14b7f7329c8e4d59fe5ca744c873 /pkg/sentry/fsimpl/tmpfs/stat_test.go | |
parent | 8605c97136ab798e23d0ae4e85892270d8922b4d (diff) |
Resolve remaining TODOs for tmpfs.
Closes #1197
PiperOrigin-RevId: 311438223
Diffstat (limited to 'pkg/sentry/fsimpl/tmpfs/stat_test.go')
-rw-r--r-- | pkg/sentry/fsimpl/tmpfs/stat_test.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pkg/sentry/fsimpl/tmpfs/stat_test.go b/pkg/sentry/fsimpl/tmpfs/stat_test.go index 60c2c980e..f52755092 100644 --- a/pkg/sentry/fsimpl/tmpfs/stat_test.go +++ b/pkg/sentry/fsimpl/tmpfs/stat_test.go @@ -29,7 +29,6 @@ func TestStatAfterCreate(t *testing.T) { mode := linux.FileMode(0644) // Run with different file types. - // TODO(gvisor.dev/issue/1197): Also test symlinks and sockets. for _, typ := range []string{"file", "dir", "pipe"} { t.Run(fmt.Sprintf("type=%q", typ), func(t *testing.T) { var ( @@ -175,7 +174,6 @@ func TestSetStat(t *testing.T) { mode := linux.FileMode(0644) // Run with different file types. - // TODO(gvisor.dev/issue/1197): Also test symlinks and sockets. for _, typ := range []string{"file", "dir", "pipe"} { t.Run(fmt.Sprintf("type=%q", typ), func(t *testing.T) { var ( |