Merge pull request #9 from bbannier/t/TYPED_TEST_CASE

Fix support for TYPED_TEST_CASE.
diff --git a/gtest-parallel b/gtest-parallel
index 3e2fdb4..0ffd44b 100755
--- a/gtest-parallel
+++ b/gtest-parallel
@@ -305,7 +305,8 @@
     if not line.strip():
       continue
     if line[0] != " ":
-      test_group = line.strip()
+      # Remove comments for typed tests and strip whitespace.
+      test_group = line.split('#')[0].strip()
       continue
     # Remove comments for parameterized tests and strip whitespace.
     line = line.split('#')[0].strip()