From 1eb1feefb9baa0379d81fb57b3e77296788da2de Mon Sep 17 00:00:00 2001 From: ckormanyos Date: Sat, 19 Oct 2024 13:40:14 +0200 Subject: [PATCH] Retry to find the CMake relative path --- test/test_cavs_nist_sha1_short.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_cavs_nist_sha1_short.cpp b/test/test_cavs_nist_sha1_short.cpp index 18a1b3d..722b7a1 100644 --- a/test/test_cavs_nist_sha1_short.cpp +++ b/test/test_cavs_nist_sha1_short.cpp @@ -102,7 +102,7 @@ auto where_file(const std::string& test_vectors_filename) -> std::string else { // Try to open the file from the CMake working path. - test_vectors_filename_relative = "../../../libs/" + test_vectors_filename; + test_vectors_filename_relative = "../../../../libs/" + test_vectors_filename; std::ifstream in_03(test_vectors_filename_relative.c_str());