aboutsummaryrefslogtreecommitdiff
path: root/tests/symlink_race/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/symlink_race/main.go')
-rw-r--r--tests/symlink_race/main.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/symlink_race/main.go b/tests/symlink_race/main.go
index 6fb794f..8474a83 100644
--- a/tests/symlink_race/main.go
+++ b/tests/symlink_race/main.go
@@ -4,7 +4,6 @@ import (
"fmt"
"os"
"syscall"
- "time"
)
const (
@@ -44,19 +43,6 @@ func renameLoop() {
}
}
-func chmodLoop() {
- var err error
- for {
- err = syscall.Chmod(testFile, 0777)
- if err != nil {
- fmt.Printf("Chmod() failed: %v\n", err)
- } else {
- fmt.Printf("Chmod() ok\n")
- }
- time.Sleep(100 * time.Microsecond)
- }
-}
-
func openLoop() {
var err error
var f *os.File