allwinner_a64/android/external/toolchain-utils/crosperf/test_flag.py
2018-08-08 16:14:42 +08:00

12 lines
192 B
Python

# 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]