mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-24 18:03:25 +00:00
13 lines
255 B
Bash
13 lines
255 B
Bash
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
set -e
|
|
|
|
echo "Running lmbench TCP connect latency test over virtio-net..."
|
|
|
|
# Start the server
|
|
benchmark/bin/lmbench/lat_connect -s 10.0.2.15 -b 1000
|
|
|
|
# Sleep for a long time to ensure VM won't exit
|
|
sleep 200 |