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

# 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