-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.sh
More file actions
16 lines (12 loc) · 730 Bytes
/
test.sh
File metadata and controls
16 lines (12 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
for i in {1..5}; do
echo -e "\033[34mbuild/bin/tiny test/tiny/parser/test_${i}.tiny -emit=ast\033[0m";
build/bin/tiny test/tiny/parser/test_${i}.tiny -emit=ast;
done
echo -e "\033[31mbuild/bin/tiny test/tiny/parser/test_6.tiny -emit=jit\033[0m";
build/bin/tiny test/tiny/parser/test_6.tiny -emit=jit;
echo -e "\033[33mbuild/bin/tiny test/tiny/parser/test_7.tiny -emit=mlir -opt\033[0m";
build/bin/tiny test/tiny/parser/test_7.tiny --emit=mlir -opt;
echo -e "\033[34mbuild/bin/tiny test/tiny/parser/test_7.tiny -emit=ast\033[0m";
build/bin/tiny test/tiny/parser/test_7.tiny -emit=ast;
echo -e "\033[31mbuild/bin/tiny test/tiny/parser/test_7.tiny -emit=jit\033[0m";
build/bin/tiny test/tiny/parser/test_7.tiny -emit=jit;