File: run-unit-test

package info (click to toggle)
libapfloat-java 1.14.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,304 kB
  • sloc: java: 57,357; xml: 1,241; sh: 103; makefile: 13
file content (46 lines) | stat: -rw-r--r-- 997 bytes parent folder | download | duplicates (3)
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
#!/bin/bash
set -e

pkg=libapfloat-java

export LC_ALL=C.UTF-8
if [ "${AUTOPKGTEST_TMP}" = "" ] ; then
  AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
  # Double quote below to expand the temporary directory variable now versus
  # later is on purpose.
  # shellcheck disable=SC2064
  trap "rm -rf ${AUTOPKGTEST_TMP}" 0 INT QUIT ABRT PIPE TERM
fi

cp -a /usr/share/doc/${pkg}/examples/* "${AUTOPKGTEST_TMP}"

cd "${AUTOPKGTEST_TMP}"

sh exampleComputingPi
if [ $? -eq 0 ]; then
  echo "Test exampleComputingPi PASSED"
else
  echo "Test exampleComputingPi FAILED"
fi

sh exampleComputingPi2Threads
if [ $? -eq 0 ]; then
  echo "Test exampleComputingPi2Threads PASSED"
else
  echo "Test exampleComputingPi2Threads FAILED"
fi

sh exampleWebsiteTutorial
if [ $? -eq 0 ]; then
  echo "Test exampleWebsiteTutorial PASSED"
else
  echo "Test exampleWebsiteTutorial FAILED"
fi

sh testCalculator
if [ $? -eq 0 ]; then
  echo "Test testCalculator PASSED"
else
  echo "Test testCalculator FAILED"
fi