summaryrefslogtreecommitdiffstats
path: root/packages/Python/lldbsuite/test/issue_verification/enable.py
blob: eb19276de1f7a8c260a3ceb42e702cd1364ca5b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
"""Renames *.py.park files to *.py."""
import os
import sys


def main():
    """Drives the main script behavior."""
    script_dir = os.path.dirname(os.path.realpath(__file__))
    for filename in os.listdir(script_dir):
        basename, extension = os.path.splitext(filename)
        if basename.startswith("Test") and extension == '.park':
            source_path = os.path.join(script_dir, filename)
            dest_path = os.path.join(script_dir, basename)
            sys.stdout.write("renaming {} to {}\n".format(
                source_path, dest_path))
            os.rename(source_path, dest_path)

if __name__ == "__main__":
    main()
OpenPOWER on IntegriCloud