Re: [libgo] Omit /bin in os_test.go

2011-03-07 Thread Ian Lance Taylor
Rainer Orth writes: > /bin is a directory on Solaris 2, which causes the libgo os test to > fail: > > FAIL: os > --- FAIL: os_test.TestChdirAndGetwd > Getwd returned "/usr/bin" want "/bin" > > This patch fixes this by simply removing /bin. One could probably > replace it by /sbin instead,

[libgo] Omit /bin in os_test.go

2011-03-07 Thread Rainer Orth
/bin is a directory on Solaris 2, which causes the libgo os test to fail: FAIL: os --- FAIL: os_test.TestChdirAndGetwd Getwd returned "/usr/bin" want "/bin" This patch fixes this by simply removing /bin. One could probably replace it by /sbin instead, which is a directory on every Unix I