aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/url/dotest.sh
blob: d091c625efdda476e28c1faf0f23a325ad6f07f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
# Copyright 2016 Yahoo Inc. 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_testurl_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