Skip to content
Snippets Groups Projects
Commit dd471bda authored by Tobias Winchen's avatar Tobias Winchen
Browse files

Fix missing main in PAF test

parent a0b932ca
No related branches found
No related tags found
1 merge request!1Basic CI/CD setup
Pipeline #86822 failed
#include "psrdada_cpp/effelsberg/paf/test/UnpackerTester.cuh" #include "psrdada_cpp/effelsberg/paf/test/UnpackerTester.cuh"
#include "psrdada_cpp/cli_utils.hpp"
#include "psrdada_cpp/cuda_utils.hpp" #include "psrdada_cpp/cuda_utils.hpp"
#include <random> #include <random>
...@@ -83,3 +84,16 @@ TEST_F(UnpackerTester, paf_unpack_test) ...@@ -83,3 +84,16 @@ TEST_F(UnpackerTester, paf_unpack_test)
} //namespace paf } //namespace paf
} //namespace meerkat } //namespace meerkat
} //namespace psrdada_cpp } //namespace psrdada_cpp
int main(int argc, char **argv) {
char * val = getenv("LOG_LEVEL");
if ( val )
{
psrdada_cpp::set_log_level(val);
}
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment