Skip to content

Commit

Permalink
tests: crc: fix crc library location
Browse files Browse the repository at this point in the history
These files have been moved in:

e6885a4 lib: crc: move from lib/os to lib/crc

Adjust the path to the new location.

Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
  • Loading branch information
fabiobaltieri committed Aug 20, 2023
1 parent 04d3dcb commit 5c90105
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/unit/crc/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

#include <zephyr/ztest.h>
#include <zephyr/sys/crc.h>
#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)
{
Expand Down

0 comments on commit 5c90105

Please sign in to comment.