Skip to content

Commit 6537c73

Browse files
committed
Correcting typo and removing valgrind call from workflow file
1 parent 18be453 commit 6537c73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,4 +509,4 @@ jobs:
509509
- name: Test_Encryption_Decryption
510510
shell: bash
511511
run: |
512-
valgrind ./build/libs/libdecrypt/test/test_encrypt_decrypt
512+
./build/libs/libdecrypt/test/test_encrypt_decrypt

libs/libdecrypt/test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set(PUBLIC_KEY_FILE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../libencrypt/public_ke
1010
target_compile_definitions(test_encrypt_decrypt PRIVATE PUBLIC_KEY_FILE="${PUBLIC_KEY_FILE_PATH}")
1111

1212
include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../../libencrypt/src"
13-
"${CMAKE_CURRENT_SOURCE_DIR}/../libdecrypt/src"
13+
"${CMAKE_CURRENT_SOURCE_DIR}/../src"
1414
"${CMAKE_CURRENT_SOURCE_DIR}/src")
1515

1616
target_link_libraries(test_encrypt_decrypt

0 commit comments

Comments
 (0)