diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-03-07 23:37:12 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-03-07 23:37:12 +0000 |
commit | 26bc022b8ffc4a1c32561a5b3c1ac62252457264 (patch) | |
tree | d3e803b0b5047baa6e047479d004ee1d4e0fc9e5 /libgo/go/os | |
parent | ec9dc45b75deb82a60e9be2711e40e3c14195a4c (diff) | |
download | gcc-26bc022b8ffc4a1c32561a5b3c1ac62252457264.zip gcc-26bc022b8ffc4a1c32561a5b3c1ac62252457264.tar.gz gcc-26bc022b8ffc4a1c32561a5b3c1ac62252457264.tar.bz2 |
Solaris libgo testsuite fixes.
From-SVN: r170762
Diffstat (limited to 'libgo/go/os')
-rw-r--r-- | libgo/go/os/os_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/os/os_test.go b/libgo/go/os/os_test.go index eece3c7..5b57706 100644 --- a/libgo/go/os/os_test.go +++ b/libgo/go/os/os_test.go @@ -609,7 +609,7 @@ func TestChdirAndGetwd(t *testing.T) { } // These are chosen carefully not to be symlinks on a Mac // (unlike, say, /var, /etc, and /tmp). - dirs := []string{"/bin", "/", "/usr/bin"} + dirs := []string{"/", "/usr/bin"} for mode := 0; mode < 2; mode++ { for _, d := range dirs { if mode == 0 { |