1
0
mirror of https://github.com/golang/go synced 2024-11-11 23:50:22 -07:00
go/test/runtests.sh
Robert Griesemer d79b17e60a - Make Coco/R-based parser work w/ UTF-8 encoded files even if there is
no (optional) UTF-8 marker present.

SVN=113931
2008-03-26 16:12:43 -07:00

10 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
GO=$1
for f in *.go; do
$GO $f
done