mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 09:58:09 +01:00
7 lines
189 B
Bash
7 lines
189 B
Bash
|
|
#!/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
|