NativeEnumerated.c vars NULL init and check
[com/asn1c.git] / tests / tests-skeletons / disable-leak-check-m32.sh
1 #!/bin/sh
2
3 #
4 # It is found that leak checker doesn't work in 32-bit mode.
5 # Disable in runtime.
6 #
7
8 if echo "$*" | sed -e 's/.*--//' | grep 'check-32-' >/dev/null; then
9     unset ASAN_OPTIONS
10 fi
11
12 exec "$@"