summaryrefslogtreecommitdiffstats
path: root/searchsummary/src/tests/extractkeywords/runtests.sh
blob: 2b1cf3f228e7bbdd8d1d5e770bb958599da512d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

set -e

if $VALGRIND ./searchsummary_extractkeywordstest_app -
then
  :
else
  echo FAILED: searchsummary_extractkeywordstest_app test failed
  exit 1
fi

if $VALGRIND ./searchsummary_extractkeywordstest_app - '*1000'
then
  :
else
  echo FAILED: searchsummary_extractkeywordstest_app test failed
  exit 1
fi

echo SUCCESS: searchsummary_extractkeywordstest_app test completed