##// END OF EJS Templates
Fixed two tests to run with bourne shell.
Thomas Arendsen Hein -
r1168:235e0eff default
parent child Browse files
Show More
@@ -8,11 +8,11 b' hg commit -m1 -d"0 0"'
8 echo "# should show copy"
8 echo "# should show copy"
9 cp foo bar
9 cp foo bar
10 hg copy foo bar
10 hg copy foo bar
11 hg debugstate|grep ^copy
11 hg debugstate|grep '^copy'
12
12
13 echo "# shouldn't show copy"
13 echo "# shouldn't show copy"
14 hg commit -m2 -d"0 0"
14 hg commit -m2 -d"0 0"
15 hg debugstate|grep ^copy
15 hg debugstate|grep '^copy'
16
16
17 echo "# should match"
17 echo "# should match"
18 hg debugindex .hg/data/foo.i
18 hg debugindex .hg/data/foo.i
@@ -28,7 +28,7 b' hg debugrename bar'
28 cp foo bar
28 cp foo bar
29 hg copy foo bar
29 hg copy foo bar
30 echo "# should show copy"
30 echo "# should show copy"
31 hg debugstate|grep ^copy
31 hg debugstate|grep '^copy'
32 hg commit -m3 -d"0 0"
32 hg commit -m3 -d"0 0"
33
33
34 echo "# should show no parents for tip"
34 echo "# should show no parents for tip"
@@ -38,6 +38,6 b' hg debugindex .hg/data/foo.i'
38 hg debugrename bar
38 hg debugrename bar
39
39
40 echo "# should show no copies"
40 echo "# should show no copies"
41 hg debugstate|grep ^copy
41 hg debugstate|grep '^copy'
42
42
43 exit 0
43 exit 0
@@ -13,7 +13,7 b' if [ $1 != "user@dummy" ] ; then'
13 fi
13 fi
14
14
15 # check that we're in the right directory
15 # check that we're in the right directory
16 if \! [ -x dummyssh ] ; then
16 if [ ! -x dummyssh ] ; then
17 exit -1
17 exit -1
18 fi
18 fi
19
19
@@ -5,7 +5,6 b' adding changesets'
5 adding manifests
5 adding manifests
6 adding file changes
6 adding file changes
7 added 1 changesets with 1 changes to 1 files
7 added 1 changesets with 1 changes to 1 files
8 remote: ./dummyssh: line 11: !: command not found
9 # verify
8 # verify
10 checking changesets
9 checking changesets
11 checking manifests
10 checking manifests
@@ -16,13 +15,11 b' 1 files, 1 changesets, 1 total revisions'
16 default = ssh://user@dummy/remote
15 default = ssh://user@dummy/remote
17 pulling from ssh://user@dummy/remote
16 pulling from ssh://user@dummy/remote
18 searching for changes
17 searching for changes
19 remote: ../dummyssh: line 11: !: command not found
20 no changes found
18 no changes found
21 # local change
19 # local change
22 # updating rc
20 # updating rc
23 # find outgoing
21 # find outgoing
24 searching for changes
22 searching for changes
25 remote: ../dummyssh: line 11: !: command not found
26 changeset: 1:536411b157b4
23 changeset: 1:536411b157b4
27 tag: tip
24 tag: tip
28 user: test
25 user: test
@@ -31,7 +28,6 b' summary: add'
31
28
32 # push
29 # push
33 pushing to ssh://user@dummy/remote
30 pushing to ssh://user@dummy/remote
34 remote: ../dummyssh: line 11: !: command not found
35 searching for changes
31 searching for changes
36 remote: adding changesets
32 remote: adding changesets
37 remote: adding manifests
33 remote: adding manifests
General Comments 0
You need to be logged in to leave comments. Login now