1#!/bin/sh 2 3# Copyright: 2018 Masatake YAMATO 4# License: GPL-2 5 6CTAGS=$1 7 8. ../utils.sh 9is_feature_available $CTAGS debug 10 11# For comparison the output and the expectation, sed removes signature parts from the output. 12$CTAGS --_trace=CTagsSelfTest --language-force=CTagsSelfTest ./input.unknown 13exit $? 14