acl/lib_acl_cpp/samples/ssl/aio_client/t.sh

9 lines
299 B
Bash
Raw Normal View History

2020-01-03 17:01:51 +08:00
#!/bin/sh
2020-01-05 10:32:38 +08:00
os=$(echo `uname -s`)
if [ $os == 'Darwin' ]; then
./aio_client -d "../libmbedcrypto.dylib;../libmbedx509.dylib;../libmbedtls.dylib" -c 10 -n 10000 -S -l 127.0.0.1:9800
2020-01-05 10:32:38 +08:00
else
./aio_client -d "../libmbedcrypto.so;../libmbedx509.so;../libmbedtls.so" -c 10 -n 10000 -S -l 127.0.0.1:9800
2020-01-05 10:32:38 +08:00
fi