Commit 3a33f87f by Ian Lance Taylor

gotest: don't use local

    
    It's not part of the POSIX shell standard.
    
    Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/214300

From-SVN: r280118
parent 78f02e80
98c4c21b52afd6384f9364527bd7f5f9a1c752cf a69ad9c7d1b45edcf8062a07d3a3c9b6838c04f8
The first line of this file holds the git revision number of the last The first line of this file holds the git revision number of the last
merge done from the gofrontend repository. merge done from the gofrontend repository.
...@@ -538,8 +538,7 @@ symtogo() { ...@@ -538,8 +538,7 @@ symtogo() {
# Takes an example name and puts any output into the file example.txt. # Takes an example name and puts any output into the file example.txt.
# It strips comment markers but does not otherwise change the output. # It strips comment markers but does not otherwise change the output.
exampleoutput() { exampleoutput() {
local n=$(testname $1) n=$(testname $1)
local f
for f in $gofiles $xgofiles; do for f in $gofiles $xgofiles; do
if ! grep "^func $n(" $f >/dev/null 2>&1; then if ! grep "^func $n(" $f >/dev/null 2>&1; then
continue continue
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment