Add disk performance test, to report performance of disk devices. This test reports performance for single sector R/W, sequential read/writes, and an IOPS score based on random 512 byte reads and writes. Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
9 lines
233 B
CMake
9 lines
233 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(disk_driver_test)
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|