]>
git.saurik.com Git - apple/xnu.git/blob - san/tools/validate_blacklist.sh
3 # Ensure all blacklisted files exist. Paths with wildcards are ignored.
4 # Run against a blacklist with fully-qualified paths.
8 blacklist_files
=`sed -n -e '
9 # ignore paths with wildcards
12 # strip leading 'src:'
21 for f
in $blacklist_files ; do
22 if ! [[ -e $f ]] ; then
23 echo "KASan: blacklisted file $f not found" >&2