From 5129fcc572977d4e4168e61d4fb13dcb8d5c9ead Mon Sep 17 00:00:00 2001 From: Tharushi Jayasekara Date: Fri, 15 Jan 2021 22:52:32 +0530 Subject: [PATCH] run: support symlink for test directories --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index 9326764cf..095be190d 100755 --- a/run.py +++ b/run.py @@ -876,7 +876,7 @@ def main(): tdir = os.path.abspath(args.testdir) # First gather the tests so we can run them in alphabetic order. tests = [] - for dirpath, dirnames, filenames in os.walk(tdir): + for dirpath, dirnames, filenames in os.walk(tdir, followlinks = True): # The top directory is not a test... if dirpath == os.path.join(TOPDIR, "tests"): continue -- 2.47.2