mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-18 03:56:42 +00:00
11 lines
235 B
Bash
11 lines
235 B
Bash
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
set -e
|
|
|
|
echo "*** Running the LMbench file read bandwidth test ***"
|
|
|
|
dd if=/dev/zero of=/ext2/test_file bs=1M count=512
|
|
/benchmark/bin/lmbench/bw_file_rd -P 1 512m io_only /ext2/test_file
|