summaryrefslogtreecommitdiffstats
path: root/debian/tests/simpletest
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 15:59:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 15:59:49 +0000
commit0e764bd6a393ec1a7e876e4cafbbf0665e78849c (patch)
treebd15cfb16df2d659532769e8bdfd76a16c7f7ad6 /debian/tests/simpletest
parentAdding upstream version 1:9.18.19. (diff)
downloadbind9-debian.tar.xz
bind9-debian.zip
Adding debian version 1:9.18.19-1~deb12u1.debian/1%9.18.19-1_deb12u1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/tests/simpletest')
-rw-r--r--debian/tests/simpletest22
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/tests/simpletest b/debian/tests/simpletest
new file mode 100644
index 0000000..10951e7
--- /dev/null
+++ b/debian/tests/simpletest
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+set -e
+
+setup() (
+ service bind9 stop
+ service bind9 start
+ sleep 1
+)
+
+run() (
+ # Make a query against a local zone
+ dig -x 127.0.0.1 @127.0.0.1
+)
+
+teardown() (
+ service bind9 stop
+)
+
+setup
+run
+teardown