comparison tests/test-run-tests.t @ 21734:34e0bd895afc

test-run-tests.t: test running a passing test
author Pierre-Yves David <pierre-yves.david@fb.com>
date Fri, 30 May 2014 12:10:19 -0700
parents b6192ea7f7fd
children 7ec3b32b98bb
comparison
equal deleted inserted replaced
21733:9ad11d5bcc2f 21734:34e0bd895afc
4 ============ 4 ============
5 5
6 $ $TESTDIR/run-tests.py 6 $ $TESTDIR/run-tests.py
7 7
8 # Ran 0 tests, 0 skipped, 0 warned, 0 failed. 8 # Ran 0 tests, 0 skipped, 0 warned, 0 failed.
9
10 a succesful test
11 =======================
12
13 $ cat > test-success.t << EOF
14 > $ echo babar
15 > babar
16 > EOF
17
18 $ $TESTDIR/run-tests.py --with-hg=`which hg`
19 .
20 # Ran 1 tests, 0 skipped, 0 warned, 0 failed.