mirror of
https://github.com/golang/go
synced 2024-11-22 05:54:40 -07:00
3cdf9c3bff
- added script to run tests - fixed primary expression syntax in go.atg SVN=112281
9 lines
208 B
Bash
Executable File
9 lines
208 B
Bash
Executable File
# Copyright 2009 The Go Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
#!/bin/bash
|
|
for f in *.go; do
|
|
../src/go $f
|
|
done
|