nextpnr/tests/dummy/main.cc

10 lines
153 B
C++
Raw Normal View History

2018-06-11 21:04:30 +02:00
#include "gtest/gtest.h"
#include <vector>
2018-06-12 20:44:05 +02:00
int main(int argc, char **argv)
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
2018-06-11 21:04:30 +02:00
}