mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-14 08:50:53 +08:00
11 lines
400 B
Bash
Executable File
11 lines
400 B
Bash
Executable File
#!/bin/sh
|
|
|
|
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
|
|
else
|
|
./aio_client -d "../libmbedcrypto.so;../libmbedx509.so;../libmbedtls.so" -c 10 -n 10000 -S -l 127.0.0.1:9800
|
|
fi
|
|
|
|
# ./aio_client -d "/usr/local/lib64/libcrypto.so; /usr/local/lib64/libssl.so" -c 100 -n 10000 -k -S
|