diff options
author | Jamie Liu <jamieliu@google.com> | 2020-04-23 15:35:56 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-04-23 15:37:10 -0700 |
commit | 5042ea7e2cbdc0c04fd454583589a3b1e152f95d (patch) | |
tree | cc1c58e4f0b1176205a86358badfca4aa031610b /pkg/sentry/fsimpl/gofer/gofer_test.go | |
parent | cc5de905e628c5e9aca7e7a333d6dd9638719b6a (diff) |
Add vfs.MkdirOptions.ForSyntheticMountpoint.
PiperOrigin-RevId: 308143529
Diffstat (limited to 'pkg/sentry/fsimpl/gofer/gofer_test.go')
-rw-r--r-- | pkg/sentry/fsimpl/gofer/gofer_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/fsimpl/gofer/gofer_test.go b/pkg/sentry/fsimpl/gofer/gofer_test.go index 4041fb252..adff39490 100644 --- a/pkg/sentry/fsimpl/gofer/gofer_test.go +++ b/pkg/sentry/fsimpl/gofer/gofer_test.go @@ -24,7 +24,7 @@ import ( func TestDestroyIdempotent(t *testing.T) { fs := filesystem{ - dentries: make(map[*dentry]struct{}), + syncableDentries: make(map[*dentry]struct{}), opts: filesystemOptions{ // Test relies on no dentry being held in the cache. maxCachedDentries: 0, |