comparison tests/testlib @ 1840:2321fd2ed56e

testlib: enable rebase and obsolete for easier testing
author Augie Fackler <augie@google.com>
date Wed, 10 Jun 2015 14:59:05 -0400
parents 1bc5e62fc0c7
children 85390446f8c1
comparison
equal deleted inserted replaced
1839:1bc5e62fc0c7 1840:2321fd2ed56e
2 2
3 # This file holds logic that is used in many tests. 3 # This file holds logic that is used in many tests.
4 # It can be called in a test like this: 4 # It can be called in a test like this:
5 # $ . "$TESTDIR/testlib" 5 # $ . "$TESTDIR/testlib"
6 6
7 # Activate extensions 7 # Enable obsolete markers and enable extensions
8 echo "[extensions]" >> $HGRCPATH 8 cat >> $HGRCPATH << EOF
9 [experimental]
10 evolution=createmarkers,exchange
11
12 [extensions]
13 rebase=
14 EOF
9 echo "topic=$(echo $(dirname $TESTDIR))/src/topic" >> $HGRCPATH 15 echo "topic=$(echo $(dirname $TESTDIR))/src/topic" >> $HGRCPATH