##// END OF EJS Templates
Don't use mktemp in tests, we're already in a secure temp dir.
Thomas Arendsen Hein -
r1786:ffb584a1 default
parent child Browse files
Show More
@@ -18,8 +18,7 b' echo "name = test-archive" >> .hg/hgrc'
18 echo "allowzip = true" >> .hg/hgrc
18 echo "allowzip = true" >> .hg/hgrc
19 echo "allowgz = true" >> .hg/hgrc
19 echo "allowgz = true" >> .hg/hgrc
20 echo "allowbz2 = true" >> .hg/hgrc
20 echo "allowbz2 = true" >> .hg/hgrc
21 serverpid=`mktemp`
21 hg serve -p 20059 -d --pid-file=hg.pid
22 hg serve -p 20059 -d --pid-file=$serverpid
23
22
24 TIP=`hg id -v | cut -f1 -d' '`
23 TIP=`hg id -v | cut -f1 -d' '`
25 QTIP=`hg id -q`
24 QTIP=`hg id -q`
@@ -35,5 +34,4 b' http_proxy= python getarchive.py "$TIP" '
35 http_proxy= python getarchive.py "$TIP" zip > archive.zip
34 http_proxy= python getarchive.py "$TIP" zip > archive.zip
36 unzip -t archive.zip | sed "s/$QTIP/TIP/"
35 unzip -t archive.zip | sed "s/$QTIP/TIP/"
37
36
38 kill `cat $serverpid`
37 kill `cat hg.pid`
39 rm $serverpid
@@ -7,8 +7,7 b' hg init'
7 hg addremove
7 hg addremove
8 hg commit -m 1
8 hg commit -m 1
9 hg verify
9 hg verify
10 serverpid=`mktemp`
10 hg serve -p 20059 -d --pid-file=hg.pid
11 hg serve -p 20059 -d --pid-file=$serverpid
12 cd ..
11 cd ..
13
12
14 hg clone http://localhost:20059/ copy
13 hg clone http://localhost:20059/ copy
@@ -19,5 +18,4 b' cat foo'
19 hg manifest
18 hg manifest
20 hg pull
19 hg pull
21
20
22 kill `cat $serverpid`
21 kill `cat ../test/hg.pid`
23 rm $serverpid
General Comments 0
You need to be logged in to leave comments. Login now