mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 01:48:08 +01:00
6 lines
189 B
Bash
Executable file
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
|