File: run-unit-test

package info (click to toggle)
libgff 2.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 536 kB
  • sloc: cpp: 8,540; ansic: 1,282; sh: 22; makefile: 5
file content (30 lines) | stat: -rw-r--r-- 656 bytes parent folder | download | duplicates (2)
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
#!/bin/bash
set -e

pkg=libgff-dev

if [ "${AUTOPKGTEST_TMP}" = "" ] ; then
  AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
  trap "rm -rf ${AUTOPKGTEST_TMP}" 0 INT QUIT ABRT PIPE TERM
fi

cp /usr/share/doc/${pkg}/examples/* -a "${AUTOPKGTEST_TMP}"
cp /usr/share/doc/python-pysam/tests/pysam_data/test.gtf -a "${AUTOPKGTEST_TMP}"

cd "${AUTOPKGTEST_TMP}"
gunzip -r *

echo 'Compiling ...'
g++ TestGFFParse.cpp -lgff -Wall -o testlib
echo '------------------------------'
echo

echo 'Test 1'
./testlib test.gtf
echo 'PASS'
echo '-------------------------------'

echo 'Test 2'
./testlib example.gtf
echo 'PASS'
echo '-------------------------------'