blob: da79a3e905080e5e0723d372b41d1319e2e756e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
# set -x
# run test
lua ../dynasm.lua test_z_inst.c | gcc -DDASM_CHECKS -std=gnu99 -Wall -Werror -g -x c -o test_z_inst -
./test_z_inst
ec=$?
# cleanup
rm -f ./test_z_inst
# exit
exit $ec
|