Show More
@@ -1,90 +1,109 b'' | |||
|
1 | 1 | This file tests the behavior of run-tests.py itself. |
|
2 | 2 | |
|
3 | 3 | Smoke test |
|
4 | 4 | ============ |
|
5 | 5 | |
|
6 | 6 | $ $TESTDIR/run-tests.py |
|
7 | 7 | |
|
8 | 8 | # Ran 0 tests, 0 skipped, 0 warned, 0 failed. |
|
9 | 9 | |
|
10 | 10 | a succesful test |
|
11 | 11 | ======================= |
|
12 | 12 | |
|
13 | 13 | $ cat > test-success.t << EOF |
|
14 | 14 | > $ echo babar |
|
15 | 15 | > babar |
|
16 | 16 | > EOF |
|
17 | 17 | |
|
18 | 18 | $ $TESTDIR/run-tests.py --with-hg=`which hg` |
|
19 | 19 | . |
|
20 | 20 | # Ran 1 tests, 0 skipped, 0 warned, 0 failed. |
|
21 | 21 | |
|
22 | 22 | failing test |
|
23 | 23 | ================== |
|
24 | 24 | |
|
25 | 25 | $ cat > test-failure.t << EOF |
|
26 | 26 | > $ echo babar |
|
27 | 27 | > rataxes |
|
28 | 28 | > EOF |
|
29 | 29 | |
|
30 | 30 | $ $TESTDIR/run-tests.py --with-hg=`which hg` |
|
31 | 31 | |
|
32 | 32 | --- $TESTTMP/test-failure.t |
|
33 | 33 | +++ $TESTTMP/test-failure.t.err |
|
34 | 34 | @@ -1,2 +1,2 @@ |
|
35 | 35 | $ echo babar |
|
36 | 36 | - rataxes |
|
37 | 37 | + babar |
|
38 | 38 | |
|
39 | 39 | ERROR: test-failure.t output changed |
|
40 | 40 | !. |
|
41 | 41 | Failed test-failure.t: output changed |
|
42 | 42 | # Ran 2 tests, 0 skipped, 0 warned, 1 failed. |
|
43 | 43 | python hash seed: * (glob) |
|
44 | 44 | [1] |
|
45 | 45 | |
|
46 | 46 | test for --retest |
|
47 | 47 | ==================== |
|
48 | 48 | |
|
49 | 49 | $ $TESTDIR/run-tests.py --with-hg=`which hg` --retest |
|
50 | 50 | |
|
51 | 51 | --- $TESTTMP/test-failure.t |
|
52 | 52 | +++ $TESTTMP/test-failure.t.err |
|
53 | 53 | @@ -1,2 +1,2 @@ |
|
54 | 54 | $ echo babar |
|
55 | 55 | - rataxes |
|
56 | 56 | + babar |
|
57 | 57 | |
|
58 | 58 | ERROR: test-failure.t output changed |
|
59 | 59 | ! |
|
60 | 60 | Failed test-failure.t: output changed |
|
61 | 61 | # Ran 1 tests, 1 skipped, 0 warned, 1 failed. |
|
62 | 62 | python hash seed: * (glob) |
|
63 | 63 | [1] |
|
64 | 64 | |
|
65 | 65 | Selecting Tests To Run |
|
66 | 66 | ====================== |
|
67 | 67 | |
|
68 | 68 | successful |
|
69 | 69 | |
|
70 | 70 | $ $TESTDIR/run-tests.py --with-hg=`which hg` test-success.t |
|
71 | 71 | . |
|
72 | 72 | # Ran 1 tests, 0 skipped, 0 warned, 0 failed. |
|
73 | 73 | |
|
74 | 74 | failed |
|
75 | 75 | |
|
76 | 76 | $ $TESTDIR/run-tests.py --with-hg=`which hg` test-failure.t |
|
77 | 77 | |
|
78 | 78 | --- $TESTTMP/test-failure.t |
|
79 | 79 | +++ $TESTTMP/test-failure.t.err |
|
80 | 80 | @@ -1,2 +1,2 @@ |
|
81 | 81 | $ echo babar |
|
82 | 82 | - rataxes |
|
83 | 83 | + babar |
|
84 | 84 | |
|
85 | 85 | ERROR: test-failure.t output changed |
|
86 | 86 | ! |
|
87 | 87 | Failed test-failure.t: output changed |
|
88 | 88 | # Ran 1 tests, 0 skipped, 0 warned, 1 failed. |
|
89 | 89 | python hash seed: * (glob) |
|
90 | 90 | [1] |
|
91 | ||
|
92 | Running In Debug Mode | |
|
93 | ====================== | |
|
94 | ||
|
95 | $ $TESTDIR/run-tests.py --with-hg=`which hg` --debug | |
|
96 | + echo SALT* 0 0 (glob) | |
|
97 | SALT* 0 0 (glob) | |
|
98 | + echo babar | |
|
99 | babar | |
|
100 | + echo SALT* 2 0 (glob) | |
|
101 | SALT* 2 0 (glob) | |
|
102 | .+ echo SALT* 0 0 (glob) | |
|
103 | SALT* 0 0 (glob) | |
|
104 | + echo babar | |
|
105 | babar | |
|
106 | + echo SALT* 2 0 (glob) | |
|
107 | SALT* 2 0 (glob) | |
|
108 | . | |
|
109 | # Ran 2 tests, 0 skipped, 0 warned, 0 failed. |
General Comments 0
You need to be logged in to leave comments.
Login now