Skip to content

Commit d125b9e

Browse files
path issues
1 parent 8f29111 commit d125b9e

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

src/test_certs_r3_with_acvts.sh

+1-4
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,9 @@ test_ta () {
6060

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

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

src/test_certs_r4_with_acvts.sh

+1-4
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,9 @@ test_ta () {
5858

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

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

0 commit comments

Comments
 (0)