Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Unified Diff: build_tools/debug_server/debug_server/unit_tests/unit_tests.cc

Issue 6312039: RSP proxy that can record session (for playback testing).... (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
+}
+

Powered by Google App Engine
This is Rietveld 408576698