From 98bcd321c50d60b156349a254c0654962d039bee Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Sun, 10 Feb 2019 11:06:39 +0100 Subject: [PATCH] Remove always_passing_unittest.cc. Bug: None Change-Id: I14b24d28c1469ad58b8657cd8e7e630be866a502 Reviewed-on: https://webrtc-review.googlesource.com/c/122081 Reviewed-by: Karl Wiberg Commit-Queue: Mirko Bonadei Cr-Commit-Position: refs/heads/master@{#26658} --- test/BUILD.gn | 1 - test/testsupport/always_passing_unittest.cc | 19 ------------------- 2 files changed, 20 deletions(-) delete mode 100644 test/testsupport/always_passing_unittest.cc diff --git a/test/BUILD.gn b/test/BUILD.gn index 77306b9912..99c5467ed3 100644 --- a/test/BUILD.gn +++ b/test/BUILD.gn @@ -377,7 +377,6 @@ if (rtc_include_tests) { "rtp_file_reader_unittest.cc", "rtp_file_writer_unittest.cc", "single_threaded_task_queue_unittest.cc", - "testsupport/always_passing_unittest.cc", "testsupport/perf_test_unittest.cc", "testsupport/test_artifacts_unittest.cc", "testsupport/video_frame_writer_unittest.cc", diff --git a/test/testsupport/always_passing_unittest.cc b/test/testsupport/always_passing_unittest.cc deleted file mode 100644 index e6318f7e0b..0000000000 --- a/test/testsupport/always_passing_unittest.cc +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Copyright (c) 2014 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/gtest.h" - -namespace webrtc { - -// A test that always passes. Useful when all tests in a executable are -// disabled, since a gtest returns exit code 1 if no tests have executed. -TEST(AlwaysPassingTest, AlwaysPassingTest) {} - -} // namespace webrtc