cub3d/test_badmaps.sh
2025-10-08 13:15:17 +02:00

6 lines
189 B
Bash
Executable file

#!/usr/bin/env bash
for i in ./ressources/bad_maps/*; do
printf "testing $i...\n"
./cub3D $i && printf "$i...\tFAILED (did not detect expected error)\n" || printf "$i...\tPASSED\n"
done