mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-14 08:50:53 +08:00
8 lines
292 B
Bash
Executable File
8 lines
292 B
Bash
Executable File
#!/bin/sh
|
|
os=$(echo `uname -s`)
|
|
if [ $os == 'Darwin' ]; then
|
|
./ssl_client -d "../libmbedcrypto.dylib;../libmbedx509.dylib;../libmbedtls.dylib" -s 127.0.0.1:9800 -c 10 -n 10000
|
|
else
|
|
./ssl_client -d "../libmbedcrypto.so;../libmbedx509.so;../libmbedtls.so" -s 127.0.0.1:9800 -c 10 -n 10000
|
|
fi
|