thrift/lib/d/test/async_test_runner.sh
Jake Farrell b95b0ffa72 THRIFT-1500: d programming language support
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
2012-03-22 21:49:10 +00:00

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."