1#!/bin/sh 2 3# Copyright: 2017 Masatake YAMATO 4# License: GPL-2 5 6CTAGS=$1 7 8. ../utils.sh 9is_feature_available $CTAGS sandbox 10is_feature_available ${CTAGS} interactive 11is_feature_available ${CTAGS} '!' gcov 12 13{ 14 echo '{"command":"generate-tags", "filename":"input.c", "size": 28}' 15 echo 'int main(void) { return 0; }' 16} | $CTAGS --quiet --options=NONE --_interactive=sandbox 17 18exit $? 19