mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-07 20:43:40 +00:00
d30f8b6ed6
Add direct test for the problem to make the fix commit clearer. Noticed while implementing MkdirTemp on mac; the upstream tests for MkdirTemp fail without this.
43 lines
1016 B
Go
43 lines
1016 B
Go
// +build darwin linux,!baremetal
|
|
|
|
// Copyright 2016 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package os
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// Sync is a stub, not yet implemented
|
|
func (f *File) Sync() error {
|
|
return ErrNotImplemented
|
|
}
|
|
|
|
// statNolog stats a file with no test logging.
|
|
func statNolog(name string) (FileInfo, error) {
|
|
var fs fileStat
|
|
err := ignoringEINTR(func() error {
|
|
return handleSyscallError(syscall.Stat(name, &fs.sys))
|
|
})
|
|
if err != nil {
|
|
return nil, &PathError{Op: "stat", Path: name, Err: err}
|
|
}
|
|
fillFileStatFromSys(&fs, name)
|
|
return &fs, nil
|
|
}
|
|
|
|
// lstatNolog lstats a file with no test logging.
|
|
func lstatNolog(name string) (FileInfo, error) {
|
|
var fs fileStat
|
|
err := ignoringEINTR(func() error {
|
|
return handleSyscallError(syscall.Lstat(name, &fs.sys))
|
|
})
|
|
if err != nil {
|
|
return nil, &PathError{Op: "lstat", Path: name, Err: err}
|
|
}
|
|
fillFileStatFromSys(&fs, name)
|
|
return &fs, nil
|
|
}
|