aboutsummaryrefslogtreecommitdiff
path: root/test.sh
blob: 6e0ed076a4c800a589187c2fad3525c53916af7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

GREEN="\033[0;32m"
YELLOW="\033[0;33m"
RESET="\033[0m"

for f in test/*.test
do
	echo -e "$YELLOW$f...$RESET"
	diff <(./isjit $f) "${f/.test/.result}" && echo -e "${GREEN}OK$RESET"
done