summaryrefslogtreecommitdiff
path: root/tools/integration_tests.py
diff options
context:
space:
mode:
authorKevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>2019-02-01 22:28:31 -0800
committerRyan Dahl <ry@tinyclouds.org>2019-02-02 01:28:31 -0500
commit3650bae5f6565cb6de2706512df145c86e8525cd (patch)
tree2bc066e39dc60fdb6ce7fd615c7f9d92deb45f54 /tools/integration_tests.py
parent16ed1f2545b34851ebdb9095251236fb51e39f5d (diff)
Add --info flag to display file info (compiled code/source map) (#1647)
Diffstat (limited to 'tools/integration_tests.py')
-rwxr-xr-xtools/integration_tests.py3
1 files changed, 3 insertions, 0 deletions
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