blob: 4a9ce12f1da3e512e02dc4ee523806e28192307f [file] [log] [blame]
# 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', [
'tool',
'cleanup_test_files',
'push_deps',
'gtest_filter',
'test_arguments',
'timeout',
'suite_name'])