1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Move test_yjit_asm.sh into misc

Since conventionally scripts don't live at the top level of the repo.
This commit is contained in:
Alan Wu 2021-10-18 10:53:29 -04:00
parent 5906a5a732
commit 8a9a2d0049
3 changed files with 3 additions and 3 deletions

10
misc/test_yjit_asm.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/bash
set -e
set -x
clang -std=gnu99 -Wall -Werror -Wno-error=unused-function -Wshorten-64-to-32 yjit_asm.c yjit_asm_tests.c -o asm_test
./asm_test
rm asm_test