summaryrefslogtreecommitdiff
path: root/debian/tests/cve-2019-16396
blob: 9b30942f2bb5e33bed4cb5d14c1352b2c471453c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
#
# verify that CVE-2019-16396 is fixed
#

cd debian/tests

echo "info: compiling"
(cobc cve-2019-16396.cob > $AUTOPKGTEST_TMP/cve-2019-16396.act 2>&1)

echo "info: running"
cmp -s cve-2019-16396.exp $AUTOPKGTEST_TMP/cve-2019-16396.act
res=$?
if [ $res = 0 ] ; then
    echo "success: cve-2019-16396 produced proper results"
else
    echo "error: cve-2019-16396 did not produce proper results"
    diff -u cve-2019-16396.exp $AUTOPKGTEST_TMP/cve-2019-16396.act
fi

exit $res