aboutsummaryrefslogtreecommitdiff
path: root/crosperf/test_flag.py
blob: 70918693ddd87afdc9ff27ee1b2244f7f06d223e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Copyright 2011 Google Inc. All Rights Reserved.
"""A global variable for testing."""

is_test = [False]


def SetTestMode(flag):
  is_test[0] = flag


def GetTestMode():
  return is_test[0]