blob: 8b6f716ce4742f4b57dca8856cfec11631a2043a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// https://github.com/vinniefalco/LuaBridge
//
// Copyright 2018, Dmitry Tarakanov
// SPDX-License-Identifier: MIT
#include <gtest/gtest.h>
int main (int argc, char** argv)
{
// Disable performance tests by default
if (argc == 1)
{
testing::GTEST_FLAG (filter) = "-PerformanceTests.AllTests";
}
testing::InitGoogleTest (&argc, argv);
return RUN_ALL_TESTS();
}
|