commit 54ce09df1f150774acb9cfffc7278dadea9229f9
parent e7af432ebbe04edad5e65af0df4f46549722039a
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Sat, 11 Jan 2025 13:42:46 +0100
tests/make: Unset CC and CFLAGS
These environment variables can have an impact in the test result
and unseting them makes more predictable the tests.
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/tests/make/execute/chktest.sh b/tests/make/execute/chktest.sh
@@ -3,6 +3,9 @@
ulimit -c 0
rm -f test.log
+unset CFLAGS
+unset CC
+
for i in *-*.sh
do
printf "Test: %s\n\n" $i >> test.log