mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-10 13:56:48 +00:00
14 lines
232 B
Bash
14 lines
232 B
Bash
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
set -e
|
|
|
|
echo "Running lmbench TCP latency over virtio-net..."
|
|
|
|
# Start the server
|
|
/benchmark/bin/lmbench/lat_tcp -s 10.0.2.15
|
|
|
|
# Sleep for a long time to ensure VM won't exit
|
|
sleep 200
|