mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
28 lines
759 B
Python
28 lines
759 B
Python
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import os
|
|
|
|
|
|
def parse_test_path(test_path, topsrcdir):
|
|
"""Returns a dict containing:
|
|
* 'normalized': the normalized path, relative to the topsrcdir
|
|
* 'isdir': whether the path points to a directory
|
|
"""
|
|
is_dir = os.path.isdir(test_path)
|
|
|
|
normalized = os.path.normpath(test_path)
|
|
topsrcdir = os.path.normpath(topsrcdir)
|
|
|
|
if normalized.startswith(topsrcdir):
|
|
normalized = normalized[len(topsrcdir):]
|
|
|
|
return {
|
|
'normalized': normalized,
|
|
'is_dir': is_dir,
|
|
}
|
|
|