annotate tests/test-command-template.out @ 3347:25d270e0b27f

ui.py: untangle updateopts The code in ui.updateopts that handles ui.quiet, ui.verbose and ui.debugflag is too smart, making it somewhat hard to see what are the exact constraints placed on the values of these variables, hiding some buglets. This patch makes these constraints more explicit, fixing these buglets and changing the behaviour slightly. It also adds a test to make sure things work as expected in the future. The buglets: - setting ui.debug = True in a hgrc wouldn't turn on verbose mode - additionally, setting ui.quiet = True or using --quiet would give you a "quiet debug" mode. The behaviour change: - previously, in a hgrc file, ui.quiet wins against ui.verbose (i.e. the final result would be quiet mode), but --verbose wins against --quiet - now ui.quiet nullifies ui.verbose and --verbose nullifies --quiet. As a consequence, using -qv always gives you normal mode (unless debug mode was turned on somewhere)
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Tue, 10 Oct 2006 18:43:20 -0300
parents a6d0cd63068c
children 0600d326d96a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
1 # default style is like normal output
2973
fb493241d7f6 Only show long hashes with --debug, not --verbose
Matt Mackall <mpm@selenic.com>
parents: 2303
diff changeset
2 1c1
fb493241d7f6 Only show long hashes with --debug, not --verbose
Matt Mackall <mpm@selenic.com>
parents: 2303
diff changeset
3 < changeset: 3:10e46f2dcbf4
fb493241d7f6 Only show long hashes with --debug, not --verbose
Matt Mackall <mpm@selenic.com>
parents: 2303
diff changeset
4 ---
fb493241d7f6 Only show long hashes with --debug, not --verbose
Matt Mackall <mpm@selenic.com>
parents: 2303
diff changeset
5 > changeset: 3:10e46f2dcbf4823578cf180f33ecf0b957964c47
fb493241d7f6 Only show long hashes with --debug, not --verbose
Matt Mackall <mpm@selenic.com>
parents: 2303
diff changeset
6 10c10
fb493241d7f6 Only show long hashes with --debug, not --verbose
Matt Mackall <mpm@selenic.com>
parents: 2303
diff changeset
7 < changeset: 2:97054abb4ab8
fb493241d7f6 Only show long hashes with --debug, not --verbose
Matt Mackall <mpm@selenic.com>
parents: 2303
diff changeset
8 ---
fb493241d7f6 Only show long hashes with --debug, not --verbose
Matt Mackall <mpm@selenic.com>
parents: 2303
diff changeset
9 > changeset: 2:97054abb4ab824450e9164180baf491ae0078465
fb493241d7f6 Only show long hashes with --debug, not --verbose
Matt Mackall <mpm@selenic.com>
parents: 2303
diff changeset
10 18c18
fb493241d7f6 Only show long hashes with --debug, not --verbose
Matt Mackall <mpm@selenic.com>
parents: 2303
diff changeset
11 < changeset: 1:b608e9d1a3f0
fb493241d7f6 Only show long hashes with --debug, not --verbose
Matt Mackall <mpm@selenic.com>
parents: 2303
diff changeset
12 ---
fb493241d7f6 Only show long hashes with --debug, not --verbose
Matt Mackall <mpm@selenic.com>
parents: 2303
diff changeset
13 > changeset: 1:b608e9d1a3f0273ccf70fb85fd6866b3482bf965
fb493241d7f6 Only show long hashes with --debug, not --verbose
Matt Mackall <mpm@selenic.com>
parents: 2303
diff changeset
14 29c29
fb493241d7f6 Only show long hashes with --debug, not --verbose
Matt Mackall <mpm@selenic.com>
parents: 2303
diff changeset
15 < changeset: 0:1e4e1b8f71e0
fb493241d7f6 Only show long hashes with --debug, not --verbose
Matt Mackall <mpm@selenic.com>
parents: 2303
diff changeset
16 ---
fb493241d7f6 Only show long hashes with --debug, not --verbose
Matt Mackall <mpm@selenic.com>
parents: 2303
diff changeset
17 > changeset: 0:1e4e1b8f71e05681d422154f5421e385fec3454f
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
18 18a19
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
19 > files:
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
20 29a31
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
21 > files:
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
22 43a46
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
23 > files:
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
24 # compact style works
2303
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
25 3[tip] 10e46f2dcbf4 1970-01-16 01:06 +0000 person
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
26 no user, no domain
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
27
2303
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
28 2 97054abb4ab8 1970-01-14 21:20 +0000 other
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
29 no person
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
30
2303
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
31 1 b608e9d1a3f0 1970-01-13 17:33 +0000 other
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
32 other 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
33
2303
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
34 0 1e4e1b8f71e0 1970-01-12 13:46 +0000 user
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
35 line 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
36
2303
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
37 3[tip] 10e46f2dcbf4 1970-01-16 01:06 +0000 person
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
38 no user, no domain
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
39
2303
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
40 2 97054abb4ab8 1970-01-14 21:20 +0000 other
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
41 no person
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
42
2303
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
43 1 b608e9d1a3f0 1970-01-13 17:33 +0000 other
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
44 other 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
45
2303
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
46 0 1e4e1b8f71e0 1970-01-12 13:46 +0000 user
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
47 line 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
48
2303
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
49 3[tip]:2,-1 10e46f2dcbf4 1970-01-16 01:06 +0000 person
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
50 no user, no domain
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
51
2303
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
52 2:1,-1 97054abb4ab8 1970-01-14 21:20 +0000 other
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
53 no person
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
54
2303
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
55 1:0,-1 b608e9d1a3f0 1970-01-13 17:33 +0000 other
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
56 other 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
57
2303
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
58 0:-1,-1 1e4e1b8f71e0 1970-01-12 13:46 +0000 user
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
59 line 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
60
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
61 # error if style not readable
3077
e270cbd4aa20 Fixed OSError "No such file or directory: None" and make IOError consistent.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 2973
diff changeset
62 abort: Permission denied: ./q
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
63 # error if no style
3077
e270cbd4aa20 Fixed OSError "No such file or directory: None" and make IOError consistent.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 2973
diff changeset
64 abort: No such file or directory: notexist
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
65 # error if style missing key
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
66 abort: ./t: no key named 'changeset'
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
67 # error if include fails
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
68 abort: template file ./q: Permission denied
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
69 # include works
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
70 3
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
71 2
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
72 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
73 0
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
74 # ui.style works
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
75 3
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
76 2
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
77 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
78 0
3186
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
79 # issue338
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
80 1970-01-16 person <person>
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
81
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
82 * c:
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
83 no user, no domain
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
84 [10e46f2dcbf4] [tip]
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
85
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
86 1970-01-14 other <other@place>
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
87
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
88 * c:
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
89 no person
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
90 [97054abb4ab8]
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
91
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
92 1970-01-13 A. N. Other <other@place>
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
93
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
94 * b:
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
95 other 1 other 2
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
96
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
97 other 3
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
98 [b608e9d1a3f0]
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
99
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
100 1970-01-12 User Name <user@hostname>
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
101
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
102 * a:
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
103 line 1 line 2
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
104 [1e4e1b8f71e0]
a6d0cd63068c Make "hg log --style=changelog > changelog" work (issue338)
Thomas Arendsen Hein <thomas@intevation.de>
parents: 3077
diff changeset
105
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
106 # keys work
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
107 author: person
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
108 author: other@place
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
109 author: A. N. Other <other@place>
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
110 author: User Name <user@hostname>
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
111 author--verbose: person
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
112 author--verbose: other@place
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
113 author--verbose: A. N. Other <other@place>
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
114 author--verbose: User Name <user@hostname>
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
115 author--debug: person
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
116 author--debug: other@place
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
117 author--debug: A. N. Other <other@place>
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
118 author--debug: User Name <user@hostname>
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
119 branches:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
120 branches:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
121 branches:
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
122 branches:
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
123 branches--verbose:
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
124 branches--verbose:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
125 branches--verbose:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
126 branches--verbose:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
127 branches--debug:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
128 branches--debug:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
129 branches--debug:
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
130 branches--debug:
1939
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
131 date: 1300000.00
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
132 date: 1200000.00
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
133 date: 1100000.00
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
134 date: 1000000.00
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
135 date--verbose: 1300000.00
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
136 date--verbose: 1200000.00
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
137 date--verbose: 1100000.00
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
138 date--verbose: 1000000.00
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
139 date--debug: 1300000.00
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
140 date--debug: 1200000.00
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
141 date--debug: 1100000.00
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
142 date--debug: 1000000.00
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
143 desc: no user, no domain
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
144 desc: no person
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
145 desc: other 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
146 other 2
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
147
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
148 other 3
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
149 desc: line 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
150 line 2
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
151 desc--verbose: no user, no domain
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
152 desc--verbose: no person
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
153 desc--verbose: other 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
154 other 2
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
155
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
156 other 3
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
157 desc--verbose: line 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
158 line 2
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
159 desc--debug: no user, no domain
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
160 desc--debug: no person
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
161 desc--debug: other 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
162 other 2
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
163
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
164 other 3
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
165 desc--debug: line 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
166 line 2
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
167 file_adds:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
168 file_adds:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
169 file_adds:
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
170 file_adds:
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
171 file_adds--verbose:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
172 file_adds--verbose:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
173 file_adds--verbose:
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
174 file_adds--verbose:
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
175 file_adds--debug:
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
176 file_adds--debug: c
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
177 file_adds--debug: b
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
178 file_adds--debug: a
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
179 file_dels:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
180 file_dels:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
181 file_dels:
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
182 file_dels:
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
183 file_dels--verbose:
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
184 file_dels--verbose:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
185 file_dels--verbose:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
186 file_dels--verbose:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
187 file_dels--debug:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
188 file_dels--debug:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
189 file_dels--debug:
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
190 file_dels--debug:
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
191 files: c
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
192 files: c
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
193 files: b
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
194 files: a
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
195 files--verbose: c
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
196 files--verbose: c
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
197 files--verbose: b
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
198 files--verbose: a
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
199 files--debug: c
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
200 files--debug:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
201 files--debug:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
202 files--debug:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
203 manifest:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
204 manifest:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
205 manifest:
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
206 manifest:
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
207 manifest--verbose:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
208 manifest--verbose:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
209 manifest--verbose:
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
210 manifest--verbose:
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
211 manifest--debug: 3:cb5a1327723b
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
212 manifest--debug: 2:6e0e82995c35
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
213 manifest--debug: 1:4e8d705b1e53
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
214 manifest--debug: 0:a0c8bcbbb45c
2303
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
215 node: 10e46f2dcbf4823578cf180f33ecf0b957964c47
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
216 node: 97054abb4ab824450e9164180baf491ae0078465
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
217 node: b608e9d1a3f0273ccf70fb85fd6866b3482bf965
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
218 node: 1e4e1b8f71e05681d422154f5421e385fec3454f
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
219 node--verbose: 10e46f2dcbf4823578cf180f33ecf0b957964c47
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
220 node--verbose: 97054abb4ab824450e9164180baf491ae0078465
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
221 node--verbose: b608e9d1a3f0273ccf70fb85fd6866b3482bf965
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
222 node--verbose: 1e4e1b8f71e05681d422154f5421e385fec3454f
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
223 node--debug: 10e46f2dcbf4823578cf180f33ecf0b957964c47
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
224 node--debug: 97054abb4ab824450e9164180baf491ae0078465
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
225 node--debug: b608e9d1a3f0273ccf70fb85fd6866b3482bf965
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
226 node--debug: 1e4e1b8f71e05681d422154f5421e385fec3454f
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
227 parents:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
228 parents:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
229 parents:
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
230 parents:
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
231 parents--verbose:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
232 parents--verbose:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
233 parents--verbose:
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
234 parents--verbose:
2303
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
235 parents--debug: 2:97054abb4ab8 -1:000000000000
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
236 parents--debug: 1:b608e9d1a3f0 -1:000000000000
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
237 parents--debug: 0:1e4e1b8f71e0 -1:000000000000
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
238 parents--debug: -1:000000000000 -1:000000000000
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
239 rev: 3
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
240 rev: 2
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
241 rev: 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
242 rev: 0
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
243 rev--verbose: 3
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
244 rev--verbose: 2
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
245 rev--verbose: 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
246 rev--verbose: 0
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
247 rev--debug: 3
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
248 rev--debug: 2
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
249 rev--debug: 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
250 rev--debug: 0
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
251 tags: tip
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
252 tags:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
253 tags:
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
254 tags:
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
255 tags--verbose: tip
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
256 tags--verbose:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
257 tags--verbose:
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
258 tags--verbose:
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
259 tags--debug: tip
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
260 tags--debug:
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
261 tags--debug:
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
262 tags--debug:
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
263 # filters work
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
264
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
265 place
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
266 place
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
267 hostname
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
268 person
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
269 other
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
270 A. N. Other
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
271 User Name
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
272 person
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
273 other
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
274 other
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
275 user
1939
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
276 Fri Jan 16 01:06:40 1970 +0000
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
277 Wed Jan 14 21:20:00 1970 +0000
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
278 Tue Jan 13 17:33:20 1970 +0000
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
279 Mon Jan 12 13:46:40 1970 +0000
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
280 1970-01-16 01:06 +0000
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
281 1970-01-14 21:20 +0000
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
282 1970-01-13 17:33 +0000
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
283 1970-01-12 13:46 +0000
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
284 Fri, 16 Jan 1970 01:06:40 +0000
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
285 Wed, 14 Jan 1970 21:20:00 +0000
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
286 Tue, 13 Jan 1970 17:33:20 +0000
d59fc0d4558f Use timestamps without leading 0 in test-command-template for portable tests.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1918
diff changeset
287 Mon, 12 Jan 1970 13:46:40 +0000
1918
7f0899f7828c fix template tests.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents: 1915
diff changeset
288 no user, no domain
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
289 no person
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
290 other 1
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
291 line 1
2303
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
292 10e46f2dcbf4
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
293 97054abb4ab8
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
294 b608e9d1a3f0
78e7fd16f472 Corrected tests for commit now consistently stripping last newline.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1939
diff changeset
295 1e4e1b8f71e0
1915
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
296 # error on syntax
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
297 abort: t:3: unmatched quotes
9598cde4756d add tests for command line template.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff changeset
298 # done