From 184e423fa4f3fdd00f0e435b731936f6b1d400da Mon Sep 17 00:00:00 2001
From: Craig Tiller <ctiller@google.com>
Date: Wed, 24 Feb 2016 22:48:56 -0800
Subject: [PATCH] Fix bug

---
 tools/run_tests/run_tests.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index 49c9b2dc58..75de4cb71d 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -174,11 +174,11 @@ class CLanguage(object):
             if i >= 0: line = line[:i]
             if not line: continue
             if line[0] != ' ':
-              base = line
+              base = line.strip()
             else:
               assert base is not None
               assert line[1] == ' '
-              test = base + line[2:]
+              test = base + line.strip()
               cmdline = [binary] + ['--gtest_filter=%s' % test]
               out.append(self.config.job_spec(cmdline, [binary],
                                               shortname='%s:%s' % (binary, test),
-- 
GitLab