blob: aab8338912b2effac9c022a853b29cbb1d971b8c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/env sh
cd $(dirname "$0")
./run.sh
echo "--- 'Write a C Compiler' test suite ---"
cd nlsandler-write_a_c_compiler
./test_compiler.sh ../../antcc
cd ..
echo "--- Lua 5.4.0 ---"
./lua.sh
echo "--- c-testsuite ---"
./c-testsuite.sh
|