blob: 1f1809166cdaf9b665c446d2a55136ae4b6b486b (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
#!/bin/Shell
result=no
match hello {
he* { result=yes }
* { result=fail }
};
test "$result" = yes || echo invalid result $result for normal string match, single option && exit 1
result=no
match hello {
he* | f* { result=yes }
* { result=fail }
};
test "$result" = yes || echo invalid result $result for normal string match, multiple options && exit 1
result=no
match (well hello friends) {
(* *) { result=fail }
(* * *) { result=yes }
* { result=fail }
};
test "$result" = yes || echo invalid result $result for list match && exit 1
result=no
match yes as v {
() { result=fail }
(*) { result=yes }
* { result=$v }
};
test "$result" = yes || echo invalid result $result for match with name && exit 1
result=no
# $(...) is a list, $(echo) should be an empty list, not an empty string
match $(echo) {
* { result=fail }
() { result=yes }
};
test "$result" = yes || echo invalid result $result for list subst match && exit 1
result=no
# "$(...)" is a string, "$(echo)" should be an empty string, not an empty list
match "$(echo)" {
* { result=yes }
() { result=fail }
};
test "$result" = yes || echo invalid result $result for string subst match && exit 1
match (foo bar) {
(f? *) as (x y) {
result=fail
}
(f* b*) as (x y) {
if [ "$x" = oo -a "$y" = ar ] {
result=yes
} else {
result=fail
}
}
}
test "$result" = yes || echo invalid result $result for subst match with name && exit 1
match (foo bar baz) {
(f? * *z) as (x y z) {
result=fail
}
(f* b* *z) as (x y z) {
if [ "$x" = oo -a "$y" = ar -a "$z" = ba ] {
result=yes
} else {
result=fail
}
}
}
test "$result" = yes || echo invalid result $result for subst match with name 2 && exit 1
|