summaryrefslogtreecommitdiffstats
path: root/vdslib/src/tests/gtest_runner.cpp
blob: d10f7182c077e63a4e2359fab6fa9152c8dd1a62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <gtest/gtest.h>

#include <vespa/log/log.h>
LOG_SETUP("vdslib_gtest_runner");

int
main(int argc, char* argv[])
{
    ::testing::InitGoogleTest(&argc, argv);
    return RUN_ALL_TESTS();
}