Show More
@@ -19,6 +19,9 HGEDITOR=true; export HGEDITOR | |||
|
19 | 19 | HGMERGE=true; export HGMERGE |
|
20 | 20 | HGUSER="test"; export HGUSER |
|
21 | 21 | |
|
22 | ECHO_N="echo -n" | |
|
23 | [ -x /usr/ucb/echo ] && ECHO_N="/usr/ucb/echo -n" | |
|
24 | ||
|
22 | 25 | umask 022 |
|
23 | 26 | |
|
24 | 27 | tests=0 |
@@ -126,7 +129,7 if [ -z "$TESTS" ] ; then | |||
|
126 | 129 | fi |
|
127 | 130 | |
|
128 | 131 | for f in $TESTS ; do |
|
129 | echo -n "." | |
|
132 | $ECHO_N "." | |
|
130 | 133 | run_one $f || failed=`expr $failed + 1` |
|
131 | 134 | tests=`expr $tests + 1` |
|
132 | 135 | done |
@@ -30,8 +30,8 f = urllib2.urlopen('http://127.0.0.1:20 | |||
|
30 | 30 | % (node, archive)) |
|
31 | 31 | sys.stdout.write(f.read()) |
|
32 | 32 | EOF |
|
33 |
http_proxy= python getarchive.py "$TIP" gz | tar t |
|
|
34 |
http_proxy= python getarchive.py "$TIP" bz2 | tar t |
|
|
33 | http_proxy= python getarchive.py "$TIP" gz | gunzip -dc - | tar tf - | sed "s/$QTIP/TIP/" | |
|
34 | http_proxy= python getarchive.py "$TIP" bz2 | bunzip2 -dc - | tar tf - | sed "s/$QTIP/TIP/" | |
|
35 | 35 | http_proxy= python getarchive.py "$TIP" zip > archive.zip |
|
36 | 36 | unzip -t archive.zip | sed "s/$QTIP/TIP/" |
|
37 | 37 |
General Comments 0
You need to be logged in to leave comments.
Login now