about summary refs log tree commit diff stats
path: root/test_apps
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-04-03 00:19:31 -0700
committerKartik Agaram <vc@akkartik.com>2020-05-18 00:44:46 -0700
commitca358b17a3fc36adcfbbb565675998de2d3e3576 (patch)
tree32c1d8726f4593521e1bc67b8e2d1ae4633c2d40 /test_apps
parent546a92985f7da2491077d641a2c118b4af7f6913 (diff)
downloadmu-ca358b17a3fc36adcfbbb565675998de2d3e3576.tar.gz
table primitives working
  $ ./translate_subx init.linux 0*.subx  &&  ./a.elf test
Diffstat (limited to 'test_apps')
-rwxr-xr-xtest_apps16
1 files changed, 1 insertions, 15 deletions
diff --git a/test_apps b/test_apps
index 83073191..06b658b3 100755
--- a/test_apps
+++ b/test_apps
@@ -221,20 +221,6 @@ test $NATIVE  &&  {
   echo
 }
 
-echo handle
-./bootstrap translate init.$OS 0[0-8]*.subx apps/handle.subx  -o apps/handle
-test "$1" = 'record'  ||  git diff --exit-code apps/handle
-test $EMULATED  &&  {
-  ./bootstrap 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; }
-}
-test $NATIVE  &&  {
-  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; }
-}
-
 # Phases of the self-hosted SubX translator.
 
 for phase in hex survey pack assort dquotes tests
@@ -324,7 +310,7 @@ done
 
 # Larger apps that use the standard library.
 
-for app in factorial crenshaw2-1 crenshaw2-1b handle
+for app in factorial crenshaw2-1 crenshaw2-1b
 do
   echo $app
   ./translate_subx init.$OS 0[0-8]*.subx apps/$app.subx
4 +0100 Makefile: added make info + some improvements' href='/akspecs/ranger/commit/Makefile?id=2c5ea01dd2003f172bdc5afdb8bb8bf34eccf0fa'>2c5ea01d ^
b0a216f5 ^



3a1e1f28 ^
b0a216f5 ^


b06433bc ^
2c5ea01d ^
b0a216f5 ^

2c5ea01d ^
2c5ea01d ^
2c5ea01d ^
582f3519 ^
b06433bc ^
582f3519 ^

94c5d83e ^
dee6cfa6 ^
e9e4b4ff ^
b0a216f5 ^


e9e4b4ff ^





ad75190c ^
e9e4b4ff ^
e9e4b4ff ^
25a4162d ^
e9e4b4ff ^
fde932f2 ^
85fd5288 ^
4ade06a6 ^

85fd5288 ^
0c2c782d ^

636d9393 ^
b0a216f5 ^
b06433bc ^
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