Avoid the need to repeat -Weverything in test .flags

This commit is contained in:
Rangi42
2025-08-11 08:11:32 -04:00
parent 978e832914
commit 7ade3e74b3
10 changed files with 10 additions and 10 deletions

View File

@@ -64,7 +64,7 @@ for i in *.asm notexist.asm; do
flags=${i%.asm}.flags
RGBASMFLAGS=-Weverything
if [ -f "$flags" ]; then
RGBASMFLAGS="$(head -n 1 "$flags")" # Allow other lines to serve as comments
RGBASMFLAGS="$RGBASMFLAGS $(head -n 1 "$flags")" # Allow other lines to serve as comments
fi
for variant in '' ' piped'; do
(( tests++ ))