Skip to content

Commit 06e04dd

Browse files
fix: Update script paths in do-cmd-tests.sh
Co-Authored-By: [email protected] <[email protected]>
1 parent b706ddb commit 06e04dd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/cmd_test/do-cmd-tests.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ echo "Using OpenSSL binary: ${OPENSSL_BIN}"
3434

3535
# Run the hash comparison test
3636
echo -e "\n=== Running Hash Comparison Test ==="
37-
cd "$SCRIPT_DIR" && ./hash-cmd-test.sh
37+
"${REPO_ROOT}/scripts/cmd_test/hash-cmd-test.sh"
3838
HASH_RESULT=$?
3939

4040
# Run the AES comparison test
4141
echo -e "\n=== Running AES Comparison Test ==="
42-
cd "$SCRIPT_DIR" && ./aes-cmd-test.sh
42+
"${REPO_ROOT}/scripts/cmd_test/aes-cmd-test.sh"
4343
AES_RESULT=$?
4444

4545
# Run the RSA key generation test
4646
echo -e "\n=== Running RSA Key Generation Test ==="
47-
cd "$SCRIPT_DIR" && ./rsa-cmd-test.sh
47+
"${REPO_ROOT}/scripts/cmd_test/rsa-cmd-test.sh"
4848
RSA_RESULT=$?
4949

5050
# Run the ECC key generation test
5151
echo -e "\n=== Running ECC Key Generation Test ==="
52-
cd "$SCRIPT_DIR" && ./ecc-cmd-test.sh
52+
"${REPO_ROOT}/scripts/cmd_test/ecc-cmd-test.sh"
5353
ECC_RESULT=$?
5454

5555
# Check results

0 commit comments

Comments
 (0)