From: Russ Cox Date: Wed, 17 Jun 2009 20:21:01 +0000 (-0700) Subject: do use $$ in path names, so that multiple X-Git-Tag: weekly.2009-11-06~1385 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=410ba58604ae215beba78a99b2f1a580e790d234;p=gostls13.git do use $$ in path names, so that multiple runs on the same machine don't collide. R=r DELTA=4 (0 added, 1 deleted, 3 changed) OCL=30426 CL=30429 --- diff --git a/test/run b/test/run index 63dca3b42a..9ef2746d38 100755 --- a/test/run +++ b/test/run @@ -26,10 +26,9 @@ failed=0 PATH=/bin:/usr/bin:$HOME/bin:`pwd` -# don't use $$ in file names to avoid spurious diffs -RUNFILE=/tmp/gorun-$USER -TMP1FILE=/tmp/gotest1-$USER -TMP2FILE=/tmp/gotest2-$USER +RUNFILE=/tmp/gorun-$$-$USER +TMP1FILE=/tmp/gotest1-$$-$USER +TMP2FILE=/tmp/gotest2-$$-$USER # don't run the machine out of memory: limit individual processes to 4GB. # on thresher, 3GB suffices to run the tests; with 2GB, peano fails.