xref: /Universal-ctags/Tmain/readtags-combine.d/run.sh (revision 6e445fe638d8c4fe1a631c9fe65d767346cacec1)
1#!/bin/sh
2
3# Copyright: 2019 CCI Europe. Author: Claus Moltke-Leth
4# License: GPL-2
5
6READTAGS=$3
7
8. ../utils.sh
9
10#V="valgrind --leak-check=full -v"
11V=
12
13if ! [ -x "${READTAGS}" ]; then
14	skip "no readtags"
15fi
16
17${V} ${READTAGS} -e -t forward.tags -l &&
18${V} ${READTAGS} -e -t backward.tags -l
19