blob: 1a30c4c6fe19af47937a002ced67b883cc3c4aa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
set -o nounset
set -o errexit
top_srcdir=$(cd $(dirname $0)/../..; pwd)
. ${top_srcdir}/test/test.shvars
python ${top_srcdir}/tools/verifysct.py --sct-file=submittedcerts --parallel 1 ${BASEURL} --publickey=keys/logkey.pem --cafile httpsca/demoCA/cacert.pem || (echo "Verification of SCT:s failed" ; false)
../../tools/check-sth.py ${BASEURL} --publickey=keys/logkey.pem --cur-sth=stored-sth --cafile httpsca/demoCA/cacert.pem
python ${top_srcdir}/tools/storagegc.py --config ${top_srcdir}/test/catlfish-test.cfg --localconfig ${top_srcdir}/test/catlfish-test-local-1.cfg || (echo "GC failed" ; false)
|