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 <fabiobaltieri@google.com>
This commit is contained in:
parent
04d3dcb116
commit
5c901052ec
1 changed files with 5 additions and 5 deletions
|
|
@ -6,11 +6,11 @@
|
||||||
|
|
||||||
#include <zephyr/ztest.h>
|
#include <zephyr/ztest.h>
|
||||||
#include <zephyr/sys/crc.h>
|
#include <zephyr/sys/crc.h>
|
||||||
#include "../../../lib/os/crc8_sw.c"
|
#include "../../../lib/crc/crc8_sw.c"
|
||||||
#include "../../../lib/os/crc16_sw.c"
|
#include "../../../lib/crc/crc16_sw.c"
|
||||||
#include "../../../lib/os/crc32_sw.c"
|
#include "../../../lib/crc/crc32_sw.c"
|
||||||
#include "../../../lib/os/crc32c_sw.c"
|
#include "../../../lib/crc/crc32c_sw.c"
|
||||||
#include "../../../lib/os/crc7_sw.c"
|
#include "../../../lib/crc/crc7_sw.c"
|
||||||
|
|
||||||
ZTEST(crc, test_crc32c)
|
ZTEST(crc, test_crc32c)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue