mirror of https://github.com/getdnsapi/getdns.git
16 lines
385 B
Plaintext
16 lines
385 B
Plaintext
# #-- 265-supported-rrs.test --#
|
|
# source the master var file when it's there
|
|
[ -f ../.tpkg.var.master ] && source ../.tpkg.var.master
|
|
# use .tpkg.var.test for in test variable passing
|
|
[ -f .tpkg.var.test ] && source .tpkg.var.test
|
|
|
|
if ! (cmake . && make)
|
|
then
|
|
exit 1
|
|
elif ! ( "./${TPKG_NAME}" "${TPKG_NAME}.net-dns.org" | tee out )
|
|
then
|
|
exit 1
|
|
else
|
|
diff out "${TPKG_NAME}.good"
|
|
fi
|