summaryrefslogtreecommitdiffstats
path: root/util/cmake/tests
diff options
context:
space:
mode:
Diffstat (limited to 'util/cmake/tests')
-rw-r--r--util/cmake/tests/data/lc_with_comment.pro18
-rwxr-xr-xutil/cmake/tests/test_parsing.py2
2 files changed, 19 insertions, 1 deletions
diff --git a/util/cmake/tests/data/lc_with_comment.pro b/util/cmake/tests/data/lc_with_comment.pro
index c087dadacc..176913dfc8 100644
--- a/util/cmake/tests/data/lc_with_comment.pro
+++ b/util/cmake/tests/data/lc_with_comment.pro
@@ -2,3 +2,21 @@ SUBDIRS = \
# dds \
tga \
wbmp
+
+MYVAR = foo # comment
+MYVAR = foo2# comment
+MYVAR = foo3# comment #
+
+MYVAR = foo4# comment #
+
+##
+#
+#
+##
+
+ #
+ #
+#
+ # #
+
+MYVAR = foo5# comment # #
diff --git a/util/cmake/tests/test_parsing.py b/util/cmake/tests/test_parsing.py
index 4b6f48b931..c8feeb1811 100755
--- a/util/cmake/tests/test_parsing.py
+++ b/util/cmake/tests/test_parsing.py
@@ -308,4 +308,4 @@ def test_realworld_lc():
def test_realworld_lc_with_comment_in_between():
result = parse_file(_tests_path + '/data/lc_with_comment.pro')
- assert len(result) == 1
+ assert len(result) == 6