blob: dabf6d4e2d9728338bf5791e4e3be2bb8bd86bd8 [file] [log] [blame]
The Android Open Source Project23580ca2008-10-21 07:00:00 -07001command "assert" {
2 STRING EQ {
3 FUNCTION hash_dir (
4 "SYS:"
5 )
6 "112345oldhashvalue1234123"
7 }
8}
9command "mark" {
10 "SYS:"
11 "dirty"
12}
13command "copy_dir" {
14 "PKG:android-files"
15 "SYS:"
16}
17command "assert" {
18 STRING EQ {
19 FUNCTION hash_dir (
20 "SYS:"
21 )
22 "667890newhashvalue6678909"
23 }
24}
25command "mark" {
26 "SYS:"
27 "clean"
28}
29command "done" {
30}
31command "assert" {
32 STRING EQ {
33 FUNCTION hash_dir (
34 "SYS:"
35 "blah"
36 )
37 "112345oldhashvalue1234123"
38 }
39}
40command "assert" {
41 STRING EQ {
42 "true"
43 "false"
44 }
45}
46command "assert" {
47 STRING NE {
48 FUNCTION matches (
49 FUNCTION hash_dir (
50 "SYS:"
51 )
52 "667890newhashvalue6678909"
53 "999999newhashvalue6678909"
54 )
55 ""
56 }
57}
58command "assert" {
59 BOOLEAN OR {
60 STRING EQ {
61 FUNCTION hash_dir (
62 "SYS:"
63 )
64 "667890newhashvalue6678909"
65 }
66 STRING EQ {
67 FUNCTION hash_dir (
68 "SYS:"
69 )
70 "999999newhashvalue6678909"
71 }
72 }
73}
74amend: Parse successful.