From 3cdf9c3bff49d1e0ef3b0347d2e97761f4c0a945 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Wed, 12 Mar 2008 15:29:57 -0700 Subject: [PATCH] - added another test - added script to run tests - fixed primary expression syntax in go.atg SVN=112281 --- tests/hashmap.go | 6 +++--- tests/runtests.sh | 8 ++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) create mode 100755 tests/runtests.sh diff --git a/tests/hashmap.go b/tests/hashmap.go index f4b15183c7f..8d5d5167d5c 100755 --- a/tests/hashmap.go +++ b/tests/hashmap.go @@ -166,9 +166,9 @@ func MakeNumber (x uint32) *Number { func main() { - func (n int) int { return n + 1; }(1); + //f unc (n int) int { return n + 1; }(1); - print "HashMap - gri 2/8/2008\n"; + //print "HashMap - gri 2/8/2008\n"; var hmap *HashMap = new(HashMap); hmap.Initialize(0); @@ -182,5 +182,5 @@ func main() { //hmap.Lookup(x2, true); //hmap.Lookup(x3, true); - print "done\n"; + //print "done\n"; } diff --git a/tests/runtests.sh b/tests/runtests.sh new file mode 100755 index 00000000000..75b7ae26a67 --- /dev/null +++ b/tests/runtests.sh @@ -0,0 +1,8 @@ +# 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