##// END OF EJS Templates
changes by John Levon to standardize some erroroutput
Peter van Dijk -
r1926:ba198d17 default
parent child Browse files
Show More
@@ -16,7 +16,7 b' hg verify'
16 # No update
16 # No update
17 hg clone -U . ../c
17 hg clone -U . ../c
18 cd ../c
18 cd ../c
19 cat a
19 cat a 2>/dev/null || echo "a not present"
20 hg verify
20 hg verify
21
21
22 # Default destination
22 # Default destination
@@ -4,7 +4,7 b' checking manifests'
4 crosschecking files in changesets and manifests
4 crosschecking files in changesets and manifests
5 checking files
5 checking files
6 1 files, 1 changesets, 1 total revisions
6 1 files, 1 changesets, 1 total revisions
7 cat: a: No such file or directory
7 a not present
8 checking changesets
8 checking changesets
9 checking manifests
9 checking manifests
10 crosschecking files in changesets and manifests
10 crosschecking files in changesets and manifests
@@ -20,7 +20,7 b' echo "this should show a revision linked'
20 hg debugindex .hg/data/b.i
20 hg debugindex .hg/data/b.i
21
21
22 echo "this should show the rename information in the metadata"
22 echo "this should show the rename information in the metadata"
23 hg debugdata .hg/data/b.d 0 | head -n 3 | tail -n 2
23 hg debugdata .hg/data/b.d 0 | head -3 | tail -2
24
24
25 $TESTDIR/md5sum.py .hg/data/b.d
25 $TESTDIR/md5sum.py .hg/data/b.d
26 hg cat b > bsum
26 hg cat b > bsum
@@ -10,7 +10,7 b' hg add sub/b'
10 hg commit -m "second" -d "0 0" sub/b
10 hg commit -m "second" -d "0 0" sub/b
11 cat sub/b
11 cat sub/b
12 hg co 0
12 hg co 0
13 cat sub/b
13 cat sub/b 2>/dev/null || echo "sub/b not present"
14 ls sub
14 ls sub 2>/dev/null || echo "sub not present"
15
15
16 true
16 true
@@ -1,3 +1,3 b''
1 321
1 321
2 cat: sub/b: No such file or directory
2 sub/b not present
3 ls: sub: No such file or directory
3 sub not present
General Comments 0
You need to be logged in to leave comments. Login now