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": -1}' 15 echo '{"command":"generate-tags", "filename":"input.el", "size": 16}' 16 echo '(defun foo () 0)' 17} | $CTAGS --quiet --options=NONE --_interactive=sandbox 18 19exit $? 20