Fixed build errors.

geesefs-0-30-9
Aaron Jacobs 2015-12-14 23:12:38 +00:00
parent 4db81d4495
commit 6afe951ee0
1 changed files with 6 additions and 6 deletions

View 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() {
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() {
} }
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() {
} }
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() {
} }
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)