blob: 1726a6a4e56d5b89cd2a285def18fbd3f5d284df (
plain)
1
2
3
4
5
6
7
8
9
10
|
# NOTE: I did not know what would be the sensible way to compile
# and run these tests from the Ruby makefile
clear
clang -std=gnu99 -Wall -Werror -Wshorten-64-to-32 ujit_asm.c ujit_asm_tests.c -o asm_test
./asm_test
rm asm_test
|