| Index: swarm_client/googletest/tests/gtest_fake/gtest_fake_pass.py
|
| ===================================================================
|
| --- swarm_client/googletest/tests/gtest_fake/gtest_fake_pass.py (revision 235167)
|
| +++ swarm_client/googletest/tests/gtest_fake/gtest_fake_pass.py (working copy)
|
| @@ -1,31 +0,0 @@
|
| -#!/usr/bin/env python
|
| -# Copyright 2013 The Chromium Authors. All rights reserved.
|
| -# Use of this source code is governed by a BSD-style license that can be
|
| -# found in the LICENSE file.
|
| -
|
| -"""Simulate a passing google-test executable.
|
| -
|
| -http://code.google.com/p/googletest/
|
| -"""
|
| -
|
| -import sys
|
| -
|
| -import gtest_fake_base
|
| -
|
| -
|
| -TESTS = {
|
| - 'Foo': ['Bar1', 'Bar2', 'Bar/3'],
|
| -}
|
| -
|
| -
|
| -def main():
|
| - test_cases, _ = gtest_fake_base.parse_args(TESTS, 0)
|
| -
|
| - for test_case in test_cases:
|
| - print gtest_fake_base.get_test_output(test_case, False)
|
| - print gtest_fake_base.get_footer(len(test_cases), len(test_cases))
|
| - return 0
|
| -
|
| -
|
| -if __name__ == '__main__':
|
| - sys.exit(main())
|
|
|