added system tests

This commit is contained in:
Andreas Gustafsson
2000-05-15 22:53:15 +00:00
parent 43383a70d3
commit 0e9dcd5480
35 changed files with 814 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#!/bin/sh
cd ns2 && sh sign.sh
if [ $# -gt 0 ]
then
case $1 in
--badsig)
echo "injecting bogus data to force signature checking to fail..." >&2
echo "a.secure.example. A 10.0.0.22" >>../ns3/secure.example.db.signed
;;
*)
echo "unknown option $1" >&2; exit 1
;;
esac
fi