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

Unified Diff: sandbox/linux/tests/unit_tests.cc

Issue 10635006: Seccomp BPF: initial structure for unittests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Have a global sandbox_linux_unittests that always builds Created 8 years, 6 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: sandbox/linux/tests/unit_tests.cc
diff --git a/remoting/host/capturer_win_unittest.cc b/sandbox/linux/tests/unit_tests.cc
similarity index 65%
copy from remoting/host/capturer_win_unittest.cc
copy to sandbox/linux/tests/unit_tests.cc
index bec0766a9159b1e5bb74c21c24f672fcfce7556d..865dbeb0e1673b72005a179587aa3e1c57446bda 100644
--- a/remoting/host/capturer_win_unittest.cc
+++ b/sandbox/linux/tests/unit_tests.cc
@@ -3,11 +3,7 @@
// found in the LICENSE file.
#include "testing/gtest/include/gtest/gtest.h"
-
-namespace remoting {
-
-TEST(CapturerGdiTest, Capture) {
- // TODO(hclam): implement this.
+int main(int argc, char *argv[]) {
+ testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
}
-
-} // namespace remoting

Powered by Google App Engine
This is Rietveld 408576698