aboutsummaryrefslogtreecommitdiff
path: root/test/run_all_unittests.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/run_all_unittests.cc')
-rw-r--r--test/run_all_unittests.cc16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/run_all_unittests.cc b/test/run_all_unittests.cc
new file mode 100644
index 0000000000..0cdf0cd030
--- /dev/null
+++ b/test/run_all_unittests.cc
@@ -0,0 +1,16 @@
+/*
+ * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+ */
+
+#include "test/test_suite.h"
+
+int main(int argc, char** argv) {
+ webrtc::test::TestSuite test_suite(argc, argv);
+ return test_suite.Run();
+}