Skip to content

Commit

Permalink
Create a 2nd results html page for only the automated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ounsworth committed Jul 21, 2024
1 parent 3bdeb22 commit ee0c31f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/test_certs_r3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,17 @@ for providerdir in $(ls -d $inputdir/*/); do

# process certs
zip=${providerdir}$certszipr3
unzipdir=${providerdir}"artifacts_certs_r3"
printf "Unziping %s\n" $zip
unzip -o $zip -d ${providerdir}"artifacts_certs_r3"
unzip -o $zip -d $unzipdir

# Start the results CSV file
mkdir -p $outputdir
resultsfile=${outputdir}${provider}_oqsprovider.csv
echo "key_algorithm_oid,test_result" > $resultsfile

# test each TA file
for tafile in $(ls ${providerdir}${artifacts_certs_r3}*_ta.pem); do
for tafile in $(ls ${unzipdir}*_ta.pem); do
test_ta "$tafile" "$resultsfile"
done
done
Expand Down

0 comments on commit ee0c31f

Please sign in to comment.