MCPcopy Create free account
hub / github.com/F-Stack/f-stack / verify_memory

Function verify_memory

dpdk/app/test/test_dmadev_api.c:411–424  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

409}
410
411static int
412verify_memory(void)
413{
414 int i;
415
416 for (i = 0; i < TEST_MEMCPY_SIZE; i++) {
417 if (src[i] == dst[i])
418 continue;
419 RTE_TEST_ASSERT_EQUAL(src[i], dst[i],
420 "Failed to copy memory, %d %d", src[i], dst[i]);
421 }
422
423 return 0;
424}
425
426static int
427test_dma_completed(void)

Callers 1

test_dma_completedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected