about summary refs log tree commit diff stats
path: root/js/combinators.js
Commit message (Expand)AuthorAgeFilesLines
* *elioat2023-08-141-7/+7
* *elioat2023-08-141-12/+12
* *elioat2023-05-171-0/+31
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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
#!/bin/sh
# Build and test (in emulated mode) all included SubX programs.
# If running on a 32-bit machine, also compare generated binaries. (64-bit introduces discrepancies.)
# If running on Linux, also test natively.

set -e
cd `dirname $0`

test `uname` = 'Linux'  &&  echo 'testing native runs as well'

CFLAGS=$CFLAGS ./build

echo ex1
./subx translate examples/ex1.subx  -o examples/ex1
git diff --quiet examples/ex1
./subx run examples/ex1  ||  ret=$?
test $ret -eq 42  # life, the universe and everything
test `uname` = 'Linux'  &&  {
  examples/ex1  ||  ret=$?
  test $ret -eq 42  # life, the universe and everything
}

echo ex2
./subx translate examples/ex2.subx  -o examples/ex2
git diff --quiet examples/ex2
./subx run examples/ex2  ||  ret=$?
test $ret -eq 2  # 1 + 1
test `uname` = 'Linux'  &&  {
  examples/ex2  ||  ret=$?
  test $ret -eq 2  # 1 + 1
}

echo ex3
./subx translate examples/ex3.subx  -o examples/ex3
git diff --quiet examples/ex3
./subx run examples/ex3  ||  ret=$?
test $ret -eq 55  # 1 + 2 + ... + 10
test `uname` = 'Linux'  &&  {
  examples/ex3  ||  ret=$?
  test $ret -eq 55  # 1 + 2 + ... + 10
}

echo ex4
./subx translate examples/ex4.subx  -o examples/ex4
git diff --quiet examples/ex4
echo a | ./subx run examples/ex4 >ex4.out  ||  true
test `cat ex4.out` = 'a'
test `uname` = 'Linux'  &&  {
  echo a | examples/ex4 >ex4.out  ||  true
  test `cat ex4.out` = 'a'
}

echo ex5
./subx translate examples/ex5.subx  -o examples/ex5
git diff --quiet examples/ex5
echo a | ./subx run examples/ex5 >ex5.out  ||  true
test `cat ex5.out` = 'a'
test `uname` = 'Linux'  &&  {
  echo a | examples/ex5 >ex5.out  ||  true
  test `cat ex5.out` = 'a'
}

echo ex6
./subx translate examples/ex6.subx  -o examples/ex6
git diff --quiet examples/ex6
./subx run examples/ex6 >ex6.out  ||  true
test "`cat ex6.out`" = 'Hello, world!'
test `uname` = 'Linux'  &&  {
  examples/ex6 >ex6.out  ||  true
  test "`cat ex6.out`" = 'Hello, world!'
}

echo ex7
./subx translate examples/ex7.subx  -o examples/ex7
git diff --quiet examples/ex7
./subx run examples/ex7  ||  ret=$?
test $ret -eq 97  # 'a'
test `uname` = 'Linux'  &&  {
  examples/ex7  ||  ret=$?
  test $ret -eq 97  # 'a'
}

echo ex8
./subx translate examples/ex8.subx  -o examples/ex8
[ "$1" != record ]  && git diff --quiet examples/ex8
./subx run examples/ex8 abcd  ||  ret=$?
test $ret -eq 4  # length('abcd')
test `uname` = 'Linux'  &&  {
  examples/ex8 abcd  ||  ret=$?
  test $ret -eq 4  # length('abcd')
}

echo ex9
./subx translate examples/ex9.subx  -o examples/ex9
[ "$1" != record ]  && git diff --quiet examples/ex9
./subx run examples/ex9 z x  ||  ret=$?
test $ret -eq 2  # 'z' - 'x'
test `uname` = 'Linux'  &&  {
  examples/ex9 z x  ||  ret=$?
  test $ret -eq 2  # 'z' - 'x'
}

echo ex10
./subx translate examples/ex10.subx  -o examples/ex10
[ "$1" != record ]  && git diff --quiet examples/ex10
./subx run examples/ex10 abc abc  ||  ret=$?
test $ret -eq 1  # equal
./subx run examples/ex10 abc abcd  # 0; not equal
test `uname` = 'Linux'  &&  {
  examples/ex10 abc abc  ||  ret=$?
  test $ret -eq 1  # equal
  examples/ex10 abc abcd  # 0; not equal
}

echo ex11
./subx translate examples/ex11.subx  -o examples/ex11
[ "$1" != record ]  && git diff --quiet examples/ex11
./subx run examples/ex11
echo
test `uname` = 'Linux'  &&  {
  examples/ex11
  echo
}

echo ex12
./subx translate examples/ex12.subx  -o examples/ex12
[ "$1" != record ]  && git diff --quiet examples/ex12
./subx run examples/ex12  # final byte of mmap'd address is well-nigh guaranteed to be 0
test `uname` = 'Linux'  &&  examples/ex12

echo handle
./subx translate *.subx apps/handle.subx  -o apps/handle
[ "$1" != record ]  &&  git diff --quiet apps/handle
./subx run apps/handle 2>&1  |grep -q 'lookup failed'
test `uname` = 'Linux'  &&  {
  apps/handle test 2>&1  |grep -q 'lookup failed'
}

echo factorial
./subx translate *.subx apps/factorial.subx  -o apps/factorial
[ "$1" != record ]  &&  git diff --quiet apps/factorial
./subx run apps/factorial  ||  ret=$?
test $ret -eq 120  # factorial(5)
./subx run apps/factorial test
echo
test `uname` = 'Linux'  &&  {
  apps/factorial  ||  ret=$?
  test $ret -eq 120  # factorial(5)
  apps/factorial test
  echo
}

echo crenshaw2-1
./subx translate *.subx apps/crenshaw2-1.subx  -o apps/crenshaw2-1
[ "$1" != record ]  &&  git diff --quiet apps/crenshaw2-1
./subx run apps/crenshaw2-1 test
echo
test `uname` = 'Linux'  &&  {
  apps/crenshaw2-1 test
  echo
}

echo crenshaw2-1b
./subx translate *.subx apps/crenshaw2-1b.subx  -o apps/crenshaw2-1b
[ "$1" != record ]  &&  git diff --quiet apps/crenshaw2-1b
./subx run apps/crenshaw2-1b test
echo
test `uname` = 'Linux'  &&  {
  apps/crenshaw2-1b test
  echo
}

echo hex
./subx translate *.subx apps/hex.subx  -o apps/hex
[ "$1" != record ]  &&  git diff --quiet apps/hex
./subx run apps/hex test
echo
test `uname` = 'Linux'  &&  {
  apps/hex test
  echo
}

echo pack
./subx translate *.subx apps/subx-common.subx apps/pack.subx  -o apps/pack
[ "$1" != record ]  &&  git diff --quiet apps/pack
./subx run apps/pack test
echo
test `uname` = 'Linux'  &&  {
  apps/pack test
  echo
}

exit 0