projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c1e2610
)
gotest: Avoid echo -n.
author
Ian Lance Taylor
<ian@gcc.gnu.org>
Tue, 5 Apr 2011 19:53:33 +0000
(19:53 +0000)
committer
Ian Lance Taylor
<ian@gcc.gnu.org>
Tue, 5 Apr 2011 19:53:33 +0000
(19:53 +0000)
From-SVN: r172000
libgo/testsuite/gotest
patch
|
blob
|
history
diff --git
a/libgo/testsuite/gotest
b/libgo/testsuite/gotest
index abfaaad08f06e38f11e66a2185637ae3aa846546..650e4333c0b44b56b711ca2c4262502c5651b037 100755
(executable)
--- a/
libgo/testsuite/gotest
+++ b/
libgo/testsuite/gotest
@@
-231,7
+231,7
@@
mkdir _test
case "x$gofiles" in
x)
- gofiles=
$(echo -n $(ls *_test.go 2>/dev/null))
+ gofiles=
`ls *_test.go 2>/dev/null`
esac
case "x$gofiles" in
@@
-250,7
+250,7
@@
GC="$holdGC"
case "x$pkgfiles" in
x)
- pkgbasefiles=
$(echo -n $(ls *.go | grep -v _test.go 2>/dev/null))
+ pkgbasefiles=
`ls *.go | grep -v _test.go 2>/dev/null`
;;
*)
for f in $pkgfiles; do