summaryrefslogtreecommitdiffstats
path: root/searchsummary/src/tests/extractkeywords/runtests.sh
blob: 1324f3ebc2eb2604e06259e19402f3dd6c0ca322 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#
# $Id$
#
# Copyright (C) 2000-2003 Fast Search & Transfer ASA
# Copyright (C) 2003 Overture Services Norway AS
#
# All Rights Reserved
#
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