Skip to content

Commit

Permalink
Update test_certs_r3.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
ounsworth authored Jul 21, 2024
1 parent 9af00f8 commit 07b51a1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/test_certs_r3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ inputdir="./providers"
outputdir="./output/certs"
logfile=$outputdir/oqs_certs.log

# Start the results CSV file
mkdir -p $outputdir
printf "Build time: %s\n\n" $(date) > $logfile


# Requires an input: the TA file to test
test_ta () {
tafile=$1
Expand Down Expand Up @@ -36,9 +41,6 @@ test_ta () {
fi
}

# Create the log file with a timestamp
printf "Build time: %s\n\n" $(date) > $logfile

# First, recurse into any provider dir
for providerdir in $(ls -d $inputdir/*/); do
provider=$(basename $providerdir)
Expand All @@ -49,8 +51,6 @@ for providerdir in $(ls -d $inputdir/*/); do
printf "Unziping %s\n" $zip
unzip -o $zip -d $unzipdir

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

Expand Down

0 comments on commit 07b51a1

Please sign in to comment.