summaryrefslogtreecommitdiffstats
path: root/searchsummary/src/tests/extractkeywords/runtests.sh
blob: 2c09bb2546000eb6957246514e6ade1cde721781 (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/sh
# 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
#

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
exit 0