aboutsummaryrefslogtreecommitdiff
path: root/test-bootstrap-jim
blob: ed5a67a718ad625a211719b7458c3a312468162e (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e
echo "Building bootstrap jimsh"
./make-bootstrap-jim >jimsh_bootstrap.c
${CC:-cc} -o jimsh_bootstrap jimsh_bootstrap.c
echo "Testing bootstrap jimsh"
( cd tests; ../jimsh_bootstrap runall.tcl )
echo "All tests passed"
rm jimsh_bootstrap jimsh_bootstrap.c