xref: /Universal-ctags/Tmain/ruby-scope-loop-oom.d/run.sh (revision 07c69744e2209a50ceea5ef62f4ad17a0dce98b5)
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