PHP 7.4.33
Preview: regrtest.py Size: 1.26 KB
//usr/lib/python3.10/test/regrtest.py
#! /usr/bin/python3.10

"""
Script to run Python regression tests.

Run this script with -h or --help for documentation.
"""

import os
import sys
from test.libregrtest import main


# Alias for backward compatibility (just in case)
main_in_temp_cwd = main


def _main():
    global __file__

    # Remove regrtest.py's own directory from the module search path. Despite
    # the elimination of implicit relative imports, this is still needed to
    # ensure that submodules of the test package do not inappropriately appear
    # as top-level modules even when people (or buildbots!) invoke regrtest.py
    # directly instead of using the -m switch
    mydir = os.path.abspath(os.path.normpath(os.path.dirname(sys.argv[0])))
    i = len(sys.path) - 1
    while i >= 0:
        if os.path.abspath(os.path.normpath(sys.path[i])) == mydir:
            del sys.path[i]
        else:
            i -= 1

    # findtestdir() gets the dirname out of __file__, so we have to make it
    # absolute before changing the working directory.
    # For example __file__ may be relative when running trace or profile.
    # See issue #9323.
    __file__ = os.path.abspath(__file__)

    # sanity check
    assert __file__ == os.path.abspath(sys.argv[0])

    main()


if __name__ == '__main__':
    _main()

Directory Contents

Dirs: 3 × Files: 7
Name Size Perms Modified Actions
- drwxr-xr-x 2026-03-12 07:02:02
Edit Download
support DIR
- drwxr-xr-x 2026-03-12 07:02:02
Edit Download
- drwxr-xr-x 2026-03-12 07:02:02
Edit Download
1.09 KB lrw-r--r-- 2026-03-03 11:56:32
Edit Download
519 B lrw-r--r-- 2026-03-03 11:56:32
Edit Download
448 B lrw-r--r-- 2026-03-03 11:56:32
Edit Download
1.26 KB lrwxr-xr-x 2026-03-03 11:56:32
Edit Download
25.33 KB lrw-r--r-- 2026-03-03 11:56:32
Edit Download
47 B lrw-r--r-- 2026-03-03 11:56:32
Edit Download
41 B lrw-r--r-- 2026-03-03 11:56:32
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).