12 lines
283 B
Bash
12 lines
283 B
Bash
#!bin/bash
|
|
|
|
set -eux
|
|
|
|
for name in tuples canvas matrices transformations rays intersections spheres lights materials; do
|
|
gcc -g -gdwarf-5 \
|
|
-Wall -Werror -Wfatal-errors \
|
|
-I. \
|
|
test/test_${name}.c -o test/test_${name} -O0 -lm
|
|
./test/test_${name}
|
|
done
|