From c6eb1fb9dd20b5fa3796037b0a3ca0bc8003c698 Mon Sep 17 00:00:00 2001 From: Trung Nguyen Date: Mon, 5 Aug 2024 16:28:23 -0500 Subject: [PATCH] Allowed to skip subfolders from input lists by commenting them out --- tools/regression-tests/run_tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/regression-tests/run_tests.py b/tools/regression-tests/run_tests.py index d14b6dfc7f..63d16d28b2 100644 --- a/tools/regression-tests/run_tests.py +++ b/tools/regression-tests/run_tests.py @@ -926,6 +926,8 @@ if __name__ == "__main__": f.close() for line in all_subfolders: if len(line) > 0: + if line[0] == '#': + continue folder = line.split()[0] example_subfolders.append(folder) num_inputscripts += int(line.split()[1])