Commit 6afe951e authored by Aaron Jacobs's avatar Aaron Jacobs

Fixed build errors.

parent 4db81d44
...@@ -1637,10 +1637,10 @@ func (t *MknodTest) File() { ...@@ -1637,10 +1637,10 @@ func (t *MknodTest) File() {
} }
var err error var err error
p := path.Join(t.mfs.Dir(), "foo") p := path.Join(t.Dir, "foo")
// Create // Create
err = syscall.Mknod(p, syscall.S_IFREG|0600, 0) err = syscall.Mknod(p, syscall.S_IFREG|0642, 0)
AssertEq(nil, err) AssertEq(nil, err)
// Stat // Stat
...@@ -1649,7 +1649,7 @@ func (t *MknodTest) File() { ...@@ -1649,7 +1649,7 @@ func (t *MknodTest) File() {
ExpectEq(path.Base(p), fi.Name()) ExpectEq(path.Base(p), fi.Name())
ExpectEq(0, fi.Size()) ExpectEq(0, fi.Size())
ExpectEq(filePerms, fi.Mode()) ExpectEq(os.FileMode(0642), fi.Mode())
// Read // Read
contents, err := ioutil.ReadFile(p) contents, err := ioutil.ReadFile(p)
...@@ -1664,7 +1664,7 @@ func (t *MknodTest) Directory() { ...@@ -1664,7 +1664,7 @@ func (t *MknodTest) Directory() {
} }
var err error var err error
p := path.Join(t.mfs.Dir(), "foo") p := path.Join(t.Dir, "foo")
// Quoth `man 2 mknod`: "Under Linux, this call cannot be used to create // Quoth `man 2 mknod`: "Under Linux, this call cannot be used to create
// directories." // directories."
...@@ -1679,7 +1679,7 @@ func (t *MknodTest) AlreadyExists() { ...@@ -1679,7 +1679,7 @@ func (t *MknodTest) AlreadyExists() {
} }
var err error var err error
p := path.Join(t.mfs.Dir(), "foo") p := path.Join(t.Dir, "foo")
// Create (first) // Create (first)
err = ioutil.WriteFile(p, []byte("taco"), 0600) err = ioutil.WriteFile(p, []byte("taco"), 0600)
...@@ -1702,7 +1702,7 @@ func (t *MknodTest) NonExistentParent() { ...@@ -1702,7 +1702,7 @@ func (t *MknodTest) NonExistentParent() {
} }
var err error var err error
p := path.Join(t.mfs.Dir(), "foo/bar") p := path.Join(t.Dir, "foo/bar")
err = syscall.Mknod(p, syscall.S_IFREG|0600, 0) err = syscall.Mknod(p, syscall.S_IFREG|0600, 0)
ExpectEq(syscall.ENOENT, err) ExpectEq(syscall.ENOENT, err)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment