File: run

package info (click to toggle)
pdns 4.9.7-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 9,876 kB
  • sloc: cpp: 94,929; sh: 5,463; makefile: 2,240; sql: 860; ansic: 668; ruby: 594; yacc: 245; lex: 131; perl: 48; python: 9
file content (19 lines) | stat: -rwxr-xr-x 289 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

# tests that are to be run from a built source tree.

exec 2>&1
set -e

cd debian/tests-source
chmod a+rx launch-pdns

for testscript in smoke-bind smoke-lmdb; do
  chmod a+rx "$testscript"
  echo
  echo "tests-source: running $testscript"
  echo
  ./$testscript
  echo
done