Skip to content

Commit 19ee23d

Browse files
committed
tests: crc: update include path for CRC unit test
Due to the move of lib/crc to subsys/crc, the include path of CRC handler in this test should be updated: - tests/unit/crc Signed-off-by: The Nguyen <[email protected]>
1 parent ce99587 commit 19ee23d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests/unit/crc/main.c

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66

77
#include <zephyr/ztest.h>
88
#include <zephyr/sys/crc.h>
9-
#include "../../../lib/crc/crc8_sw.c"
10-
#include "../../../lib/crc/crc16_sw.c"
11-
#include "../../../lib/crc/crc32_sw.c"
12-
#include "../../../lib/crc/crc32c_sw.c"
13-
#include "../../../lib/crc/crc7_sw.c"
14-
#include "../../../lib/crc/crc24_sw.c"
15-
#include "../../../lib/crc/crc32k_4_2_sw.c"
9+
#include "../../../subsys/crc/crc8_sw.c"
10+
#include "../../../subsys/crc/crc16_sw.c"
11+
#include "../../../subsys/crc/crc32_sw.c"
12+
#include "../../../subsys/crc/crc32c_sw.c"
13+
#include "../../../subsys/crc/crc7_sw.c"
14+
#include "../../../subsys/crc/crc24_sw.c"
15+
#include "../../../subsys/crc/crc32k_4_2_sw.c"
1616

1717
ZTEST(crc, test_crc32_k_4_2)
1818
{

0 commit comments

Comments
 (0)