summaryrefslogtreecommitdiff
path: root/ecomp-c/torture.sh
blob: 038dfe6730c68efde17d37d1da9807ee605ca8bb (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

for COMPILER in gcc clang pcc tcc; do
	for MODE in freestanding hosted; do
		for LEVEL in 0 1 2 3; do
			./build.sh ec $COMPILER $MODE $LEVEL
			./build.sh asm-i386 $COMPILER $MODE $LEVEL
			./test.sh
		done
	done
done