qbsp: add bash script to leak test all of the id1 maps

This commit is contained in:
Eric Wasylishen 2017-07-15 12:38:13 -06:00
parent ceff3bba82
commit 983a9afbd2
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#!/bin/bash
set -x
for MAP in *.MAP; do
qbsp -leaktest "$MAP" || exit 1
done