aboutsummaryrefslogtreecommitdiff
path: root/src/lib/strconv/Makefile
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2008-11-19 19:11:01 -0800
committerRob Pike <r@golang.org>2008-11-19 19:11:01 -0800
commit12254b6c0bc9d3f6689f12d64f7bd4cb4d20d53f (patch)
tree81b27c09f43aede65a97648aa943b2901e9f2c3b /src/lib/strconv/Makefile
parent64023e7b7d8ce78af2f08564dfcccca243a64a17 (diff)
downloadgo-12254b6c0bc9d3f6689f12d64f7bd4cb4d20d53f.tar.xz
change naming convention for tests from
test*.go to *test.go R=rsc DELTA=1747 (864 added, 855 deleted, 28 changed) OCL=19666 CL=19666
Diffstat (limited to 'src/lib/strconv/Makefile')
-rw-r--r--src/lib/strconv/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/strconv/Makefile b/src/lib/strconv/Makefile
index 454ef142fd..8d9466963b 100644
--- a/src/lib/strconv/Makefile
+++ b/src/lib/strconv/Makefile
@@ -20,7 +20,7 @@ test: packages
coverage: packages
gotest
- 6cov -g `pwd` | grep -v '^test.*\.go:'
+ 6cov -g `pwd` | grep -v '^.*test\.go:'
%.$O: %.go
$(GC) $*.go
@@ -33,8 +33,8 @@ coverage: packages
O1=\
atoi.$O\
- itoa.$O\
decimal.$O\
+ itoa.$O\
O2=\
ftoa.$O\
@@ -45,7 +45,7 @@ O3=\
strconv.a: a1 a2 a3
a1: $(O1)
- $(AR) grc strconv.a atoi.$O itoa.$O decimal.$O
+ $(AR) grc strconv.a atoi.$O decimal.$O itoa.$O
rm -f $(O1)
a2: $(O2)