Message ID | yddlizo4vt8.fsf@manam.CeBiTec.Uni-Bielefeld.DE |
---|---|
State | New |
Headers | show |
Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> writes: > diff --git a/libgo/testsuite/gotest b/libgo/testsuite/gotest > --- 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=$(printf "%s" "$(ls *_test.go 2>/dev/null)") There is no reason to use "echo -n" in the first place, since command substitution strips trailing newlines. But the printf replacement keeps internal newlines, unlike the original line. If that is ok then this is a useless use of printf, since you can just assign the output of the nested command directly. Andreas.
diff --git a/libgo/testsuite/gotest b/libgo/testsuite/gotest --- 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=$(printf "%s" "$(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=$(printf "%s" "$(ls *.go | grep -v _test.go 2>/dev/null)") ;; *) for f in $pkgfiles; do