package embox.cmd.testing

@AutoCmd
@Cmd(name = "block_dev_test",
	help = "Simple test for block device r/w operations",
	man  = '''
		NAME
			block_dev_test -- simple test for block device r/w operations
		SYNOPSIS
			block_dev_test [-hl] [-i iterations]
				-l -- Show list of all block devices
				-i -- R/W operations count
		AUTHORS
			Alexander Kalmuk
	''')

module block_dev_test {
	source "block_dev_test.c"

	depends embox.compat.libc.stdio.printf
	depends embox.compat.libc.str
	depends embox.compat.posix.util.getopt
	depends embox.driver.flash.core
	depends embox.driver.block_dev
	@NoRuntime depends embox.lib.libds
	@NoRuntime depends embox.util.pretty_print	
	depends embox.lib.LibCrypt
}
