mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 10:48:51 +00:00
b95b0ffa72
Client: D Patch: David Nadlinger D program language library and additions git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1304085 13f79535-47bb-0310-9956-ffa450edef68
7 lines
190 B
Bash
7 lines
190 B
Bash
#!/bin/bash
|
|
# Runs the async test in both SSL and non-SSL mode.
|
|
./async_test > /dev/null || exit 1
|
|
echo "Non-SSL tests done."
|
|
./async_test --ssl > /dev/null || exit 1
|
|
echo "SSL tests done."
|