mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-04 04:49:08 +08:00
9 lines
249 B
Bash
Executable File
9 lines
249 B
Bash
Executable File
#!/bin/sh
|
|
|
|
os=$(echo `uname -s`)
|
|
if [ $os == "Darwin" ]; then
|
|
./httpc -l "../libmbedcrypto.dylib;../libmbedx509.dylib;../libmbedtls.dylib" -c 200 -n 10000
|
|
else
|
|
./httpc -l "../libmbedcrypto.so;../libmbedx509.so;../libmbedtls.so" -c 200 -n 10000
|
|
fi
|