comparison tests/test-revert-interactive.t @ 24389:93d3e1a8bfb0

test-revert-interactive: eliminate bashism in wildcard pattern The test failed with Debian dash.
author Yuya Nishihara <yuya@tcha.org>
date Fri, 20 Mar 2015 00:22:37 +0900
parents 8de8cd34f2e3
children f169405c03ab
comparison
equal deleted inserted replaced
24388:026f8af88e49 24389:93d3e1a8bfb0
16 > [extensions] 16 > [extensions]
17 > record = 17 > record =
18 > EOF 18 > EOF
19 19
20 20
21 $ mkdir -p a/{folder1,folder2} 21 $ mkdir -p a/folder1 a/folder2
22 $ cd a 22 $ cd a
23 $ hg init 23 $ hg init
24 $ python $TESTDIR/seq.py 1 5 > f ; hg add f ; hg commit -m "adding f" 24 $ python $TESTDIR/seq.py 1 5 > f ; hg add f ; hg commit -m "adding f"
25 $ cat f > folder1/g ; hg add folder1/g ; hg commit -m "adding folder1/g" 25 $ cat f > folder1/g ; hg add folder1/g ; hg commit -m "adding folder1/g"
26 $ cat f > folder2/h ; hg add folder2/h ; hg commit -m "adding folder2/h" 26 $ cat f > folder2/h ; hg add folder2/h ; hg commit -m "adding folder2/h"