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