Skip to content

Commit 9af80f7

Browse files
committed
Fix path to tests in ep3 cmake files
1 parent f94046a commit 9af80f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

episodes/3-fortran-unit-test-syntax/challenge/test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ add_library (sut STATIC ${PROJ_SRC_FILES})
1212
# List all test files
1313
file(GLOB
1414
test_srcs
15-
"${PROJECT_SOURCE_DIR}/test/pfunit/*.pf"
15+
"${PROJECT_SOURCE_DIR}/test/*.pf"
1616
)
1717

1818
# evolve_board tests

episodes/3-fortran-unit-test-syntax/solution/test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ add_library (sut STATIC ${PROJ_SRC_FILES})
1212
# List all test files
1313
file(GLOB
1414
test_srcs
15-
"${PROJECT_SOURCE_DIR}/test/pfunit/*.pf"
15+
"${PROJECT_SOURCE_DIR}/test/*.pf"
1616
)
1717

1818
# evolve_board tests

0 commit comments

Comments
 (0)