blob: 830a43fc7b854c358d1a99b19432c8bfc5e79a77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
; Check that error reporting works for "-f -"
2012/02/30 * Test
a 1
b
test -f - reg -> 1
__ERROR__
While parsing file "", line 3:
While parsing transaction:
<no source context>
Error: Day of month is not valid for year
end test
test -f /dev/stdin reg -> 1
__ERROR__
While parsing file "", line 3:
While parsing transaction:
<no source context>
Error: Day of month is not valid for year
end test
|