blob: 38657399b7780239047e301df16a32349161acaf (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/bin/sh
set -e
cleanup() {
[ ! -d "${SCRATCHDIR}" ] || rm -rf "${SCRATCHDIR}"
}
#trap cleanup EXIT
SCRATCHDIR=`mktemp -d`
TEST_IDL_FILE="debian/tests/idlTest.idl"
TESTFILE=$(basename $0 .sh)
echo "Running tests in ${TESTFILE}"
echo -n "Test1: Make sure we can generate typelibs..."
/usr/lib/thunderbird-devel/sdk/bin/typelib.py \
-I"/usr/lib/thunderbird-devel/idl" \
-o "${SCRATCHDIR}/test.xpt" \
"${TEST_IDL_FILE}"
if [ -f "${SCRATCHDIR}/test.xpt" ]; then
echo "done."
else
echo "No!"
echo "Test call successful but no outputfile '${SCRATCHDIR}/test.xpt' found!"
exit 1
fi
echo -n "Test2: Make sure we can generate C++ headers..."
/usr/lib/thunderbird-devel/sdk/bin/header.py \
-I"/usr/lib/thunderbird-devel/idl" \
-o "${SCRATCHDIR}/test.h" \
"${TEST_IDL_FILE}"
if [ -f "${SCRATCHDIR}/test.h" ]; then
echo "done."
else
echo "No!"
echo "Test call successful but no outputfile '${SCRATCHDIR}/test.h' found!"
exit 1
fi
echo -n "Test3: Compiling generated file..."
g++ -std=c++11 \
-I/usr/include/thunderbird \
-I/usr/include/nspr \
-o "${SCRATCHDIR}/test.o" \
"${SCRATCHDIR}/test.h"
echo "done."
echo "All Tests in ${TESTFILE} finished successfully."
|