From 5c901052ec2a105594a91e33b8fb43d40c34b88f Mon Sep 17 00:00:00 2001 From: Fabio Baltieri Date: Sun, 20 Aug 2023 17:05:04 +0000 Subject: [PATCH] tests: crc: fix crc library location These files have been moved in: e6885a4515 lib: crc: move from lib/os to lib/crc Adjust the path to the new location. Signed-off-by: Fabio Baltieri --- tests/unit/crc/main.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/unit/crc/main.c b/tests/unit/crc/main.c index 534c2b939ab33f..bb74cba4e1c81b 100644 --- a/tests/unit/crc/main.c +++ b/tests/unit/crc/main.c @@ -6,11 +6,11 @@ #include #include -#include "../../../lib/os/crc8_sw.c" -#include "../../../lib/os/crc16_sw.c" -#include "../../../lib/os/crc32_sw.c" -#include "../../../lib/os/crc32c_sw.c" -#include "../../../lib/os/crc7_sw.c" +#include "../../../lib/crc/crc8_sw.c" +#include "../../../lib/crc/crc16_sw.c" +#include "../../../lib/crc/crc32_sw.c" +#include "../../../lib/crc/crc32c_sw.c" +#include "../../../lib/crc/crc7_sw.c" ZTEST(crc, test_crc32c) {