summaryrefslogtreecommitdiffstats
path: root/util/cmake/tests/test_lc_fixup.py
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@qt.io>2019-10-10 09:58:38 +0200
committerFrederik Gladhorn <frederik.gladhorn@qt.io>2019-10-10 13:35:43 +0000
commita5060e9f995de9d5a8f755a1837f0200e464e4af (patch)
tree80d4e5d4e94e525922d782e2df3f30a83d5e6773 /util/cmake/tests/test_lc_fixup.py
parent2659d31d936bac6383e3e87fecd5179d2b4bc9ad (diff)
cmake scripts: move parser into separate file
The code is nicely separated between parsing and processing. Splitting that into two files makes it easier to follow which function belongs to which part. Change-Id: I576b8613b0d05b2dae3f9c6fa65d9ed5b582a0f7 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'util/cmake/tests/test_lc_fixup.py')
-rwxr-xr-xutil/cmake/tests/test_lc_fixup.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/util/cmake/tests/test_lc_fixup.py b/util/cmake/tests/test_lc_fixup.py
index 841e11615e..42094a5288 100755
--- a/util/cmake/tests/test_lc_fixup.py
+++ b/util/cmake/tests/test_lc_fixup.py
@@ -27,7 +27,7 @@
##
#############################################################################
-from pro2cmake import fixup_linecontinuation
+from qmake_parser import fixup_linecontinuation
def test_no_change():
@@ -42,5 +42,3 @@ def test_fix():
output = "test line2 line3 line4 line5 \n\n"
result = fixup_linecontinuation(input)
assert output == result
-
-