##// END OF EJS Templates
Fix intermittent broken pipe in test-highlight
Brendan Cully -
r6863:d78d0f97 default
parent child Browse files
Show More
@@ -27,8 +27,9 b' echo % hgweb fileannotate'
27 27 | sed "s/[0-9]* years ago/long ago/g"
28 28
29 29 echo % hgweb highlightcss friendly
30 ("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/highlightcss') \
31 | head -n 4
30 "$TESTDIR/get-with-headers.py" localhost:$HGPORT '/highlightcss' > out
31 head -n 4 out
32 rm out
32 33
33 34 echo % errors encountered
34 35 cat errors.log
@@ -45,8 +46,9 b' hg serve -p $HGPORT -d -n test --pid-fil'
45 46 cat hg.pid >> $DAEMON_PIDS
46 47
47 48 echo % hgweb highlightcss fruity
48 ("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/highlightcss') \
49 | head -n 4
49 "$TESTDIR/get-with-headers.py" localhost:$HGPORT '/highlightcss' > out
50 head -n 4 out
51 rm out
50 52
51 53 echo % errors encountered
52 54 cat errors.log
General Comments 0
You need to be logged in to leave comments. Login now