From 3650bae5f6565cb6de2706512df145c86e8525cd Mon Sep 17 00:00:00 2001 From: "Kevin (Kun) \"Kassimo\" Qian" Date: Fri, 1 Feb 2019 22:28:31 -0800 Subject: Add --info flag to display file info (compiled code/source map) (#1647) --- tools/integration_tests.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tools/integration_tests.py') diff --git a/tools/integration_tests.py b/tools/integration_tests.py index cca4a75ca..a6392bae6 100755 --- a/tools/integration_tests.py +++ b/tools/integration_tests.py @@ -20,6 +20,9 @@ def read_test(file_name): lines = test_file.splitlines() test_dict = {} for line in lines: + if line.strip().startswith("#"): + # skip comments + continue key, value = re.split(r":\s+", line) test_dict[key] = value return test_dict -- cgit v1.2.3