You've already forked linuxdeploy
mirror of
https://github.com/encounter/linuxdeploy.git
synced 2026-07-10 12:18:44 -07:00
16 lines
338 B
C++
16 lines
338 B
C++
// library headers
|
|
#include <gtest/gtest.h>
|
|
|
|
// local headers
|
|
#include <linuxdeploy/core/log.h>
|
|
|
|
using namespace linuxdeploy::core::log;
|
|
|
|
int main(int argc, char** argv) {
|
|
// set loglevel to prevent unnecessary log messages
|
|
ldLog::setVerbosity(LD_ERROR);
|
|
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|