aboutsummaryrefslogtreecommitdiff
path: root/v14/crosperf/test_flag.py
diff options
context:
space:
mode:
Diffstat (limited to 'v14/crosperf/test_flag.py')
-rw-r--r--v14/crosperf/test_flag.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/v14/crosperf/test_flag.py b/v14/crosperf/test_flag.py
deleted file mode 100644
index 613138b2..00000000
--- a/v14/crosperf/test_flag.py
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/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]