Removes obsolete debug code.
This commit is contained in:
		@@ -67,8 +67,7 @@ def GetFlag(flag):
 | 
			
		||||
  args = [COMMAND]
 | 
			
		||||
  if flag is not None:
 | 
			
		||||
    args += [flag]
 | 
			
		||||
  return gtest_test_utils.Subprocess(args, env=environ,
 | 
			
		||||
                                     capture_stderr=False).output
 | 
			
		||||
  return gtest_test_utils.Subprocess(args, env=environ).output
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def TestFlag(flag, test_val, default_val):
 | 
			
		||||
 
 | 
			
		||||
@@ -213,7 +213,7 @@ def GetShellCommandOutput(env_cmd):
 | 
			
		||||
  # Set and save the environment properly.
 | 
			
		||||
  environ = os.environ.copy()
 | 
			
		||||
  environ.update(env_cmd[0])
 | 
			
		||||
  p = gtest_test_utils.Subprocess(env_cmd[1], env=environ, capture_stderr=False)
 | 
			
		||||
  p = gtest_test_utils.Subprocess(env_cmd[1], env=environ)
 | 
			
		||||
 | 
			
		||||
  return p.output
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -81,8 +81,7 @@ def RunAndReturnOutput(extra_env, args):
 | 
			
		||||
  environ_copy = os.environ.copy()
 | 
			
		||||
  environ_copy.update(extra_env)
 | 
			
		||||
 | 
			
		||||
  return gtest_test_utils.Subprocess([COMMAND] + args, env=environ_copy,
 | 
			
		||||
                                     capture_stderr=False).output
 | 
			
		||||
  return gtest_test_utils.Subprocess([COMMAND] + args, env=environ_copy).output
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def GetTestsForAllIterations(extra_env, args):
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user