aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/url/dotest.sh
blob: ee9baf9bf2f52a3dd856a1ce273a222076b6fdd3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
set -e

# Run test
echo "Testing the FastS_URL class..."
$VALGRIND ./searchlib_url_test_app
if [ $? -eq 0 ]; then
    echo "SUCCESS: Test on FastS_URL passed!"
else
    echo "FAILURE: Test on FastS_URL failed!"
    exit 1
fi
exit 0