mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-23 17:33:23 +00:00
21 lines
552 B
Bash
21 lines
552 B
Bash
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
set -e
|
|
|
|
# Function to stop the guest VM
|
|
stop_guest() {
|
|
echo "Stopping guest VM..."
|
|
# `-r` means if there's no qemu, the kill won't be executed
|
|
pgrep qemu | xargs -r kill
|
|
}
|
|
|
|
# Trap EXIT signal to ensure guest VM is stopped on script exit
|
|
trap stop_guest EXIT
|
|
|
|
# Run lmbench tcp client
|
|
echo "Running lmbench tcp client connected to $GUEST_SERVER_IP_ADDRESS"
|
|
/usr/local/benchmark/lmbench/lat_tcp -P 1 $GUEST_SERVER_IP_ADDRESS
|
|
|
|
# The trap will automatically stop the guest VM when the script exits |