| 1234567891011121314151617181920 | #!/usr/bin/env bash## Run the test suite with all configurations enabled#FAIL=0for FLAGS in "CONFIG_HEAP_POISONING_NONE" "CONFIG_HEAP_POISONING_LIGHT" "CONFIG_HEAP_POISONING_COMPREHENSIVE" ; do    echo "==== Testing with config: ${FLAGS} ===="    CPPFLAGS="-D${FLAGS}" make clean test || FAIL=1donemake cleanif [ $FAIL == 0 ]; then    echo "All configurations passed"else    echo "Some configurations failed, see log."    exit 1fi
 |