From f550d20196ef8262dbe71ec95fcd504da0216af4 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Wed, 14 Aug 2019 16:10:05 -0700 Subject: 5513 --- test_apps | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'test_apps') diff --git a/test_apps b/test_apps index 610a42c9..67b1c2ad 100755 --- a/test_apps +++ b/test_apps @@ -15,7 +15,7 @@ echo "== translating and running using C++" echo ex1 ./subx translate examples/ex1.subx -o examples/ex1 -[ "$1" != record ] && git diff --exit-code examples/ex1 +test "$1" == 'record' || git diff --exit-code examples/ex1 ./subx run examples/ex1 || ret=$? test $ret -eq 42 # life, the universe and everything test $NATIVE && { @@ -25,7 +25,7 @@ test $NATIVE && { echo ex2 ./subx translate examples/ex2.subx -o examples/ex2 -[ "$1" != record ] && git diff --exit-code examples/ex2 +test "$1" == 'record' || git diff --exit-code examples/ex2 ./subx run examples/ex2 || ret=$? test $ret -eq 2 # 1 + 1 test $NATIVE && { @@ -35,7 +35,7 @@ test $NATIVE && { echo ex3 ./subx translate examples/ex3.subx -o examples/ex3 -[ "$1" != record ] && git diff --exit-code examples/ex3 +test "$1" == 'record' || git diff --exit-code examples/ex3 ./subx run examples/ex3 || ret=$? test $ret -eq 55 # 1 + 2 + ... + 10 test $NATIVE && { @@ -45,7 +45,7 @@ test $NATIVE && { echo ex4 ./subx translate examples/ex4.subx -o examples/ex4 -[ "$1" != record ] && git diff --exit-code examples/ex4 +test "$1" == 'record' || git diff --exit-code examples/ex4 echo a | ./subx run examples/ex4 >ex4.out || true test `cat ex4.out` = 'a' test $NATIVE && { @@ -55,7 +55,7 @@ test $NATIVE && { echo ex5 ./subx translate examples/ex5.subx -o examples/ex5 -[ "$1" != record ] && git diff --exit-code examples/ex5 +test "$1" == 'record' || git diff --exit-code examples/ex5 echo a | ./subx run examples/ex5 >ex5.out || true test `cat ex5.out` = 'a' test $NATIVE && { @@ -65,7 +65,7 @@ test $NATIVE && { echo ex6 ./subx translate examples/ex6.subx -o examples/ex6 -[ "$1" != record ] && git diff --exit-code examples/ex6 +test "$1" == 'record' || git diff --exit-code examples/ex6 ./subx run examples/ex6 >ex6.out || true test "`cat ex6.out`" = 'Hello, world!' test $NATIVE && { @@ -75,7 +75,7 @@ test $NATIVE && { echo ex7 ./subx translate examples/ex7.subx -o examples/ex7 -[ "$1" != record ] && git diff --exit-code examples/ex7 +test "$1" == 'record' || git diff --exit-code examples/ex7 ./subx run examples/ex7 || ret=$? test $ret -eq 97 # 'a' test $NATIVE && { @@ -85,7 +85,7 @@ test $NATIVE && { echo ex8 ./subx translate examples/ex8.subx -o examples/ex8 -[ "$1" != record ] && git diff --exit-code examples/ex8 +test "$1" == 'record' || git diff --exit-code examples/ex8 ./subx run examples/ex8 abcd || ret=$? test $ret -eq 4 # length('abcd') test $NATIVE && { @@ -95,7 +95,7 @@ test $NATIVE && { echo ex9 ./subx translate examples/ex9.subx -o examples/ex9 -[ "$1" != record ] && git diff --exit-code examples/ex9 +test "$1" == 'record' || git diff --exit-code examples/ex9 ./subx run examples/ex9 z x || ret=$? test $ret -eq 2 # 'z' - 'x' test $NATIVE && { @@ -105,7 +105,7 @@ test $NATIVE && { echo ex10 ./subx translate examples/ex10.subx -o examples/ex10 -[ "$1" != record ] && git diff --exit-code examples/ex10 +test "$1" == 'record' || git diff --exit-code examples/ex10 ./subx run examples/ex10 abc abc || ret=$? test $ret -eq 1 # equal ./subx run examples/ex10 abc abcd # 0; not equal @@ -117,7 +117,7 @@ test $NATIVE && { echo ex11 ./subx translate examples/ex11.subx -o examples/ex11 -[ "$1" != record ] && git diff --exit-code examples/ex11 +test "$1" == 'record' || git diff --exit-code examples/ex11 ./subx run examples/ex11 echo test $NATIVE && { @@ -127,13 +127,13 @@ test $NATIVE && { echo ex12 ./subx translate examples/ex12.subx -o examples/ex12 -[ "$1" != record ] && git diff --exit-code examples/ex12 +test "$1" == 'record' || git diff --exit-code examples/ex12 ./subx run examples/ex12 # final byte of mmap'd address is well-nigh guaranteed to be 0 test $NATIVE && examples/ex12 echo factorial ./subx translate 0*.subx apps/factorial.subx -o apps/factorial -[ "$1" != record ] && git diff --exit-code apps/factorial +test "$1" == 'record' || git diff --exit-code apps/factorial ./subx run apps/factorial || ret=$? test $ret -eq 120 # factorial(5) ./subx run apps/factorial test @@ -147,7 +147,7 @@ test $NATIVE && { echo crenshaw2-1 ./subx translate 0*.subx apps/crenshaw2-1.subx -o apps/crenshaw2-1 -[ "$1" != record ] && git diff --exit-code apps/crenshaw2-1 +test "$1" == 'record' || git diff --exit-code apps/crenshaw2-1 ./subx run apps/crenshaw2-1 test echo test $NATIVE && { @@ -157,7 +157,7 @@ test $NATIVE && { echo crenshaw2-1b ./subx translate 0*.subx apps/crenshaw2-1b.subx -o apps/crenshaw2-1b -[ "$1" != record ] && git diff --exit-code apps/crenshaw2-1b +test "$1" == 'record' || git diff --exit-code apps/crenshaw2-1b ./subx run apps/crenshaw2-1b test echo test $NATIVE && { @@ -167,7 +167,7 @@ test $NATIVE && { echo handle ./subx translate 0*.subx apps/handle.subx -o apps/handle -[ "$1" != record ] && git diff --exit-code apps/handle +test "$1" == 'record' || git diff --exit-code apps/handle ./subx run apps/handle > handle.out 2>&1 || true grep -q 'lookup succeeded' handle.out || { echo "missing success test"; exit 1; } grep -q 'lookup failed' handle.out || { echo "missing failure test"; exit 1; } @@ -179,7 +179,7 @@ test $NATIVE && { echo hex ./subx translate 0*.subx apps/subx-common.subx apps/hex.subx -o apps/hex -[ "$1" != record ] && git diff --exit-code apps/hex +test "$1" == 'record' || git diff --exit-code apps/hex ./subx run apps/hex test echo test $NATIVE && { @@ -189,7 +189,7 @@ test $NATIVE && { echo survey ./subx translate 0*.subx apps/subx-common.subx apps/survey.subx -o apps/survey -[ "$1" != record ] && git diff --exit-code apps/survey +test "$1" == 'record' || git diff --exit-code apps/survey ./subx run apps/survey test echo test $NATIVE && { @@ -199,7 +199,7 @@ test $NATIVE && { echo pack ./subx translate 0*.subx apps/subx-common.subx apps/pack.subx -o apps/pack -[ "$1" != record ] && git diff --exit-code apps/pack +test "$1" == 'record' || git diff --exit-code apps/pack ./subx run apps/pack test echo test $NATIVE && { @@ -209,7 +209,7 @@ test $NATIVE && { echo assort ./subx translate 0*.subx apps/subx-common.subx apps/assort.subx -o apps/assort -[ "$1" != record ] && git diff --exit-code apps/assort +test "$1" == 'record' || git diff --exit-code apps/assort ./subx run apps/assort test echo test $NATIVE && { @@ -219,7 +219,7 @@ test $NATIVE && { echo dquotes ./subx translate 0*.subx apps/subx-common.subx apps/dquotes.subx -o apps/dquotes -[ "$1" != record ] && git diff --exit-code apps/dquotes +test "$1" == 'record' || git diff --exit-code apps/dquotes ./subx run apps/dquotes test echo test $NATIVE && { @@ -229,7 +229,7 @@ test $NATIVE && { echo tests ./subx translate 0*.subx apps/subx-common.subx apps/tests.subx -o apps/tests -[ "$1" != record ] && git diff --exit-code apps/tests +test "$1" == 'record' || git diff --exit-code apps/tests ./subx run apps/tests test echo test $NATIVE && { -- cgit 1.4.1-2-gfad0 loc.org <unknown> 2006-07-21 07:37:52 +0200 sanitization of several clunky stuff, removed heretag (rarely of use), simplified pop(), changed shortcuts to always contain MODKEY' href='/acidbong/suckless/dwm/commit/dwm.h?h=4.4.1&id=cd8d8e120857329800e93e22572e35560d1b0e80'>cd8d8e1 ^
3aad922 ^
3399650 ^
8b59083 ^
cd8d8e1 ^
8b59083 ^
2b5553b ^
8b59083 ^
3aad922 ^
8af1d97 ^
c53980c ^
650a1fb ^
8b59083 ^
c47da14 ^




b9da4b0 ^
439e15d ^
1076f2b
bf35794 ^
1076f2b
439e15d ^
bf35794 ^
1076f2b
8af1d97 ^
c53980c ^
8b59083 ^
8b59083 ^


bf35794 ^

8b59083 ^

650a1fb ^
8b59083 ^
8b59083 ^


bf35794 ^


8b59083 ^

1076f2b
da2bbd3 ^

3399650 ^
1173723 ^

a05beb6 ^
2e836ec ^

a05beb6 ^
901b3ed ^
4688ad1 ^
1076f2b
72707c2 ^
bf35794 ^

1076f2b

bf35794 ^

66da153 ^

bf35794 ^

efa7e51 ^
bf35794 ^


bf35794 ^
39677ec ^
439e15d ^
dba2306 ^
3399650 ^
adaa28a ^


dba2306 ^
adaa28a ^
c0705ee ^
adaa28a ^
dfd84f9 ^
adaa28a ^
04eb016 ^
adaa28a ^

4688ad1 ^
adaa28a ^

3399650 ^
d7e1708 ^
dba2306 ^
c0705ee ^
adaa28a ^
c0705ee ^

9e8b325 ^
d7e1708 ^
dba2306 ^
29355bd ^
b9da4b0 ^
9e8b325 ^
adaa28a ^
c47da14 ^
dba2306 ^
adaa28a ^
9e8b325 ^
dba2306 ^
adaa28a ^
dba2306 ^

937cabf ^
72707c2 ^
dba2306 ^
adaa28a ^
4688ad1 ^
adaa28a ^
29355bd ^
8b59083 ^
8b59083 ^
adaa28a ^
c47da14 ^
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146