aboutsummaryrefslogtreecommitdiff
blob: 2f04a555afcb5d513a3bf9bf6aff4225fcde7c62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash

. "${0%/*}"/../lib.sh

#
# make sure list output matches
#
for sfx in py sh ; do
	lddtree.${sfx} -l /bin/bash > lddtree.${sfx}.list &
done
wait
testit lddtree.*.list
rm -f lddtree.*.list


#
# Same as above but with the -a flag
#
for sfx in py sh ; do
	lddtree.${sfx} -l -a /bin/bash > lddtree.${sfx}.list-all &
done
wait
testit lddtree.*.list-all
rm -f lddtree.*.list-all


exit ${ret}