summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/forcelink/forcelink.cpp
blob: 2dc3291f1a189e9b481ed39bcf73d26a53b2bbb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/log/log.h>
LOG_SETUP("forcelink_test");
#include <vespa/vespalib/testkit/testapp.h>
#include <vespa/searchlib/expression/forcelink.hpp>
#include <vespa/searchlib/aggregation/forcelink.hpp>

TEST_SETUP(Test);

int
Test::Main()
{
    TEST_INIT("forcelink_test");
    forcelink_searchlib_expression();
    forcelink_searchlib_aggregation();
    TEST_DONE();
}