| // Copyright 2013 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. |
| // +build darwin dragonfly freebsd linux netbsd openbsd solaris |
| func TestLookPathUnixEmptyPath(t *testing.T) { |
| tmp, err := ioutil.TempDir("", "TestLookPathUnixEmptyPath") |
| t.Fatal("TempDir failed: ", err) |
| t.Fatal("Getwd failed: ", err) |
| t.Fatal("Chdir failed: ", err) |
| f, err := os.OpenFile("exec_me", os.O_CREATE|os.O_EXCL, 0700) |
| t.Fatal("OpenFile failed: ", err) |
| t.Fatal("Close failed: ", err) |
| pathenv := os.Getenv("PATH") |
| defer os.Setenv("PATH", pathenv) |
| err = os.Setenv("PATH", "") |
| t.Fatal("Setenv failed: ", err) |
| path, err := LookPath("exec_me") |
| t.Fatal("LookPath found exec_me in empty $PATH") |
| t.Fatalf("LookPath path == %q when err != nil", path) |