nextpnr/tests/dummy/main.cc

10 lines
153 B
C++
Raw Normal View History

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