mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-18 03:56:42 +00:00
14 lines
310 B
Bash
14 lines
310 B
Bash
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
set -e
|
|
|
|
echo "*** Running lmbench HTTP latency test ***"
|
|
|
|
dd if=/dev/zero of=test_file bs=1M count=64
|
|
echo "test_file" > file_list
|
|
/benchmark/bin/lmbench/lmhttp &
|
|
/benchmark/bin/lmbench/lat_http 127.0.0.1 < file_list
|
|
/benchmark/bin/lmbench/lat_http -S 127.0.0.1
|