aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/testkit-subset/testkit-subset_test.sh
blob: 9c7c92a0368f554355e8c331652e7607d074326b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
set -e

if [ -z "$SOURCE_DIRECTORY" ]; then
    SOURCE_DIRECTORY="."
fi

TEST_SUBSET=pass $VALGRIND ./vespalib_testkit-subset_test_app 2> out.txt
TEST_SUBSET="extra\.cpp:.*pass.*" $VALGRIND ./vespalib_testkit-subset_test_app 2>> out.txt
cat out.txt | grep "\.cpp: " > out.relpath.txt
cmp -s out.relpath.txt $SOURCE_DIRECTORY/out.ref.2.txt && exit 0
diff -u out.relpath.txt $SOURCE_DIRECTORY/out.ref.txt