mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 01:48:08 +01:00
https://www.notion.so/Tests-automatique-pour-les-bad-maps-239551de06f48087a5d3da952ddfc296?v=233551de06f480718417000cf26e3225&source=copy_link
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
|