blob: 79bf07502062475b84ca1b9160cf1e05851adbeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
set -e
# At least check we can execute the main binary
# to catch missing dependencies
echo -n "Test1: checking help output..."
xvfb-run -a /usr/lib/thunderbird/thunderbird -help >/dev/null
echo "done."
echo -n "Test2: checking version output..."
xvfb-run -a /usr/lib/thunderbird/thunderbird --version | grep -qs Thunderbird
echo "done."
|