]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Fixed filter-aaaa prereq.sh
authorFrancis Dupont <fdupont@isc.org>
Fri, 4 Nov 2016 13:55:59 +0000 (14:55 +0100)
committerFrancis Dupont <fdupont@isc.org>
Fri, 4 Nov 2016 13:55:59 +0000 (14:55 +0100)
bin/tests/system/filter-aaaa/prereq.sh

index 3b1987957f461e2d8681347dc44e6fb876744ce1..31f9ac6a46f9264ab632aa34f0a420646b459082 100644 (file)
@@ -6,10 +6,11 @@
 # License, v. 2.0. If a copy of the MPL was not distributed with this
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
-if $FEATURETEST --enable-filter-aaaa
-then
-    :
-else
+SYSTEMTESTTOP=..
+. $SYSTEMTESTTOP/conf.sh
+
+$FEATURETEST --enable-filter-aaaa || {
     echo "I:This test requires --enable-filter-aaaa at compile time." >&2
     exit 255
-fi
+}
+exit 0