1#!/bin/sh 2 3# Copyright: 2020 Masatake YAMATO 4# License: GPL-2 5 6READTAGS=$3 7 8. ../utils.sh 9 10#V="valgrind --leak-check=full -v" 11V= 12 13if ! [ -x "${READTAGS}" ]; then 14 skip "no readtags" 15fi 16 17if ! ( "${READTAGS}" -h | grep -q -e -S ); then 18 skip "no qualifier function in readtags" 19fi 20 21echo '# (<> $name &name)' 22${V} ${READTAGS} -t output.tags -S '(<> $name &name)' -p hi 23 24echo '# (<or> (<> (length $name) (length &name)) (<> $name &name))' 25${V} ${READTAGS} -t output.tags -S '(<or> (<> (length $name) (length &name)) (<> $name &name))' -p hi 26