Index: build_tools/debug_server/debug_server/unit_tests/unit_tests.cc |
=================================================================== |
--- build_tools/debug_server/debug_server/unit_tests/unit_tests.cc (revision 0) |
+++ build_tools/debug_server/debug_server/unit_tests/unit_tests.cc (revision 0) |
@@ -0,0 +1,15 @@ |
+#include <string> |
+#include "rsp_packetizer_test.h" |
+ |
+int main(int argc, char* argv[]){ |
+ rsp::Packetizer_test test2; |
+ std::string error; |
+ if (!test2.Run(&error)) { |
+ printf("Error in rsp::Packetizer_test [%s]\n", error.c_str()); |
+ return 2; |
+ } |
+ |
+ printf("Tests passed."); |
+ return 0; |
+} |
+ |