* Use SPDX identifier in header files * Use SPDX identifier in rest of source files * Fix usage of SPDX for files with 2 licenses * Add global license file * Fix compilation
16 lines
297 B
C++
16 lines
297 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <iostream>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
|
|
int ret = RUN_ALL_TESTS();
|
|
|
|
std::cout << "Tests finished with return value: " << ret << std::endl;
|
|
|
|
return ret;
|
|
}
|