From 88c643b6fec27eec436c8d138fee6346e92337d6 Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Tue, 20 Aug 2019 18:01:57 +0000 Subject: Remove upstream files and directories from vendor/lldb/dist that we do not use. This saves on repository space, and reduces the number of tree conflicts when merging. --- .../lldbsuite/test/issue_verification/enable.py | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100755 packages/Python/lldbsuite/test/issue_verification/enable.py (limited to 'packages/Python/lldbsuite/test/issue_verification/enable.py') diff --git a/packages/Python/lldbsuite/test/issue_verification/enable.py b/packages/Python/lldbsuite/test/issue_verification/enable.py deleted file mode 100755 index eb19276de1f7..000000000000 --- a/packages/Python/lldbsuite/test/issue_verification/enable.py +++ /dev/null @@ -1,20 +0,0 @@ -#!/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() -- cgit v1.2.3