18 lines
433 B
Python
18 lines
433 B
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.
|
|
|
|
"""Defines the GTestOptions named tuple."""
|
|
|
|
import collections
|
|
|
|
GTestOptions = collections.namedtuple('GTestOptions', [
|
|
'build_type',
|
|
'tool',
|
|
'cleanup_test_files',
|
|
'push_deps',
|
|
'gtest_filter',
|
|
'test_arguments',
|
|
'timeout',
|
|
'suite_name'])
|