1#!/bin/sh 2 3# Copyright: 2022 Masatake YAMATO 4# License: GPL-2 5 6CTAGS=$1 7 8. ../utils.sh 9 10if ! type timeout > /dev/null 2>&1; then 11 skip "timeout command is not available" 12fi 13 14timeout 5s ${CTAGS} --quiet --options=NONE --fields=+e -o - a.rb b.rb 15exit $? 16