##// 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 16 # No update
17 17 hg clone -U . ../c
18 18 cd ../c
19 cat a
19 cat a 2>/dev/null || echo "a not present"
20 20 hg verify
21 21
22 22 # Default destination
@@ -4,7 +4,7 b' checking manifests'
4 4 crosschecking files in changesets and manifests
5 5 checking files
6 6 1 files, 1 changesets, 1 total revisions
7 cat: a: No such file or directory
7 a not present
8 8 checking changesets
9 9 checking manifests
10 10 crosschecking files in changesets and manifests
@@ -20,7 +20,7 b' echo "this should show a revision linked'
20 20 hg debugindex .hg/data/b.i
21 21
22 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 25 $TESTDIR/md5sum.py .hg/data/b.d
26 26 hg cat b > bsum
@@ -10,7 +10,7 b' hg add sub/b'
10 10 hg commit -m "second" -d "0 0" sub/b
11 11 cat sub/b
12 12 hg co 0
13 cat sub/b
14 ls sub
13 cat sub/b 2>/dev/null || echo "sub/b not present"
14 ls sub 2>/dev/null || echo "sub not present"
15 15
16 16 true
@@ -1,3 +1,3 b''
1 1 321
2 cat: sub/b: No such file or directory
3 ls: sub: No such file or directory
2 sub/b not present
3 sub not present
General Comments 0
You need to be logged in to leave comments. Login now