Skip to content

Commit

Permalink
path issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph Lukefahr committed Oct 14, 2024
1 parent 8f29111 commit d125b9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions src/test_certs_r3_with_acvts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,9 @@ test_ta () {

# The actual test command that is the heart of this script
printf "Testing %s\n" $tafile |tee -a $logfile
lastWorkingDir=$(pwd)
cd $pqcCertsDir/src/nist-acvts-verifier/
# Usage: dotnet run <expected-file-type: pem|der> <path-to-file>
test_output=$(BuildGenValPackages=false dotnet run pem $tafile)
test_output=$(BuildGenValPackages=false dotnet run --project $pqcCertsDir/src/nist-acvts-verifier -- pem $tafile)
test_status=$?
cd $lastWorkingDir

# log it to file and to stdout
echo "$test_output" |tee -a $logfile
Expand Down
5 changes: 1 addition & 4 deletions src/test_certs_r4_with_acvts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,9 @@ test_ta () {

# The actual test command that is the heart of this script
printf "Testing %s\n" $tafile |tee -a $logfile
lastWorkingDir=$(pwd)
cd $pqcCertsDir/src/nist-acvts-verifier/
# Usage: dotnet run <expected-file-type: pem|der> <path-to-file>
test_output=$(BuildGenValPackages=false dotnet run der $tafile)
test_output=$(BuildGenValPackages=false dotnet run --project $pqcCertsDir/src/nist-acvts-verifier -- der $tafile)
test_status=$?
cd $lastWorkingDir

# log it to file and to stdout
echo "$test_output" |tee -a $logfile
Expand Down

0 comments on commit d125b9e

Please sign in to comment.