summaryrefslogtreecommitdiffstats
path: root/Tools/Scripts/webkitpy/common/net/testoutput.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/Scripts/webkitpy/common/net/testoutput.py')
-rw-r--r--Tools/Scripts/webkitpy/common/net/testoutput.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/Scripts/webkitpy/common/net/testoutput.py b/Tools/Scripts/webkitpy/common/net/testoutput.py
index 37c1445..7e181ed 100644
--- a/Tools/Scripts/webkitpy/common/net/testoutput.py
+++ b/Tools/Scripts/webkitpy/common/net/testoutput.py
@@ -48,13 +48,13 @@ class TestOutput(object):
def _extract_platform(self, filename):
"""Calculates the platform from the name of the file if it isn't known already"""
- path = re.split(os.path.sep, filename)
+ path = filename.split(os.path.sep)
if 'platform' in path:
return path[path.index('platform') + 1]
return None
def _extract_test_name(self, filename):
- path = re.split(os.path.sep, filename)
+ path = filename.split(os.path.sep)
if 'LayoutTests' in path:
path = path[1 + path.index('LayoutTests'):]
if 'layout-test-results' in path: