comparison tests/test-convert-darcs @ 7425:14ed6662af48

tests: disable test-convert-darcs properly for darcs 2 The x bit was disabled without notice in 8046f0a070a6
author Mads Kiilerich <mads@kiilerich.com>
date Sun, 23 Nov 2008 20:16:29 +0100
parents 12d1e1e79faf
children 5b7da468531b
comparison
equal deleted inserted replaced
7424:05a3f2802b13 7425:14ed6662af48
1 #!/bin/sh 1 #!/bin/sh
2 2
3 "$TESTDIR/hghave" darcs || exit 80 3 "$TESTDIR/hghave" darcs || exit 80
4 if darcs --version 2>&1 | grep '^2\.' > /dev/null; then
5 # FIXME: darcs 2 will fail with
6 ### Abort: timeout after 180 seconds.
7 echo 'skipped: test currently disabled for darcs 2'
8 exit 80
9 fi
4 10
5 echo "[extensions]" >> $HGRCPATH 11 echo "[extensions]" >> $HGRCPATH
6 echo "convert=" >> $HGRCPATH 12 echo "convert=" >> $HGRCPATH
7 echo 'hgext.graphlog =' >> $HGRCPATH 13 echo 'hgext.graphlog =' >> $HGRCPATH
8 14