mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-08 15:34:09 +00:00
14 lines
189 B
Bash
14 lines
189 B
Bash
![]() |
#!/bin/bash
|
||
|
# set -x
|
||
|
|
||
|
# run test
|
||
|
lua ../dynasm.lua test_z_inst.c | gcc -std=gnu99 -Wall -Werror -g -x c -o test_z_inst -
|
||
|
./test_z_inst
|
||
|
ec=$?
|
||
|
|
||
|
# cleanup
|
||
|
rm -f ./test_z_inst
|
||
|
|
||
|
# exit
|
||
|
exit $ec
|