mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-21 00:06:34 +00:00
14 lines
186 B
Bash
14 lines
186 B
Bash
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
set -e
|
|
|
|
VSOCK_DIR=/regression/vsock
|
|
cd ${VSOCK_DIR}
|
|
|
|
echo "Start vsock test......"
|
|
./vsock_client
|
|
./vsock_server
|
|
echo "Vsock test passed."
|