summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/forcelink/forcelink.cpp
blob: 9f555e09480c959b0b27104f0738a1454542c72a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/fastos/fastos.h>
#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();
}