Skip to content

Commit 40751ca

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 a30a001 commit 40751ca

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/unit/crc/main.c

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
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"
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"
1515

1616
ZTEST(crc, test_crc32c)
1717
{

0 commit comments

Comments
 (0)