summaryrefslogtreecommitdiffstats
path: root/searchsummary/src/tests/docsumformat/dotest.sh
blob: 056e043de026ea1aad58fc0cc4bff4b7539c33ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
set -e

echo "running pack test..."
./docsum-pack > packtest.out 2>&1
res=$?
if [ $res -eq 0 ]; then
    echo "pack test PASSED"
else
    echo "pack test FAILED!"
    echo "please check packtest.out"
    exit 1
fi