blob: d455b48038a155b7ba4df91c8ea0ec701d12e381 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
2010/02/09 * Test 1
A $10
B
2010/02/10 * Test 2
B $10
C
2010/02/11 * Test 3
C $10
D
test reg
test -l "date>=[2010/02/10]" reg
10-Feb-10 Test 2 B $10 $10
C $-10 0
10-Feb-11 Test 3 C $10 $10
D $-10 0
end test
test -l "date<=[2010/02/10]" reg
10-Feb-09 Test 1 A $10 $10
B $-10 0
10-Feb-10 Test 2 B $10 $10
C $-10 0
end test
test -l "date==[2010/02/10]" reg
10-Feb-10 Test 2 B $10 $10
C $-10 0
end test
test -l "date>[2010/02/10]" reg
10-Feb-11 Test 3 C $10 $10
D $-10 0
end test
test -l "date<[2010/02/10]" reg
10-Feb-09 Test 1 A $10 $10
B $-10 0
end test
|