##// END OF EJS Templates
tests: fix tar invocation, to address issue 6740
Arseniy Alekseyev -
r50384:58e38c1a stable
parent child Browse files
Show More
@@ -177,7 +177,7 b" It's a tarball because unbundle might ma"
177 177 $ cd ..
178 178 $ mkdir repo-to-fix
179 179 $ cd repo-to-fix
180 $ tar -x < $TESTDIR/bundles/issue6528.tar
180 $ tar -xf - < "$TESTDIR"/bundles/issue6528.tar
181 181
182 182 Check that the issue is present
183 183 (It is currently not present with rhg but will be when optimizations are added
@@ -278,7 +278,7 b' Try the using the report options'
278 278 $ cd ..
279 279 $ mkdir repo-to-fix-report
280 280 $ cd repo-to-fix
281 $ tar -x < "$TESTDIR"/bundles/issue6528.tar
281 $ tar -xf - < "$TESTDIR"/bundles/issue6528.tar
282 282
283 283 $ hg debug-repair-issue6528 --to-report $TESTTMP/report.txt
284 284 found affected revision 1 for filelog 'data/D.txt.i'
@@ -365,7 +365,7 b' Try it with a non-inline revlog'
365 365
366 366 $ mkdir repo-to-fix-not-inline
367 367 $ cd repo-to-fix-not-inline
368 $ tar -x < "$TESTDIR"/bundles/issue6528.tar
368 $ tar -xf - < "$TESTDIR"/bundles/issue6528.tar
369 369 $ echo b >> b.txt
370 370 $ hg commit -qm "inline -> separate"
371 371 $ find .hg -name *b.txt.d
@@ -73,7 +73,7 b' This is what we did to produce the repo '
73 73 - hg commit -Am_
74 74 - remove some cache files
75 75
76 $ tar -x < "$TESTDIR"/bundles/test-revlog-diff-relative-to-nullrev.tar
76 $ tar -xf - < "$TESTDIR"/bundles/test-revlog-diff-relative-to-nullrev.tar
77 77 $ cd nullrev-diff
78 78 $ hg debugdeltachain a
79 79 rev p1 p2 chain# chainlen prev delta size rawsize chainsize ratio lindist extradist extraratio readsize largestblk rddensity srchunks
General Comments 0
You need to be logged in to leave comments. Login now