diff options
author | Oswald Buddenhagen <oswald.buddenhagen@digia.com> | 2013-08-09 10:17:11 (GMT) |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-08-19 13:41:02 (GMT) |
commit | 23717f80cd0f2e6a63aaabc1f62a377d13f76540 (patch) | |
tree | d69ec975a618f180ca4b1a279c0b20661be77440 /tests/auto | |
parent | 3f67fd3cbfe6804614dc5be7c64bef2fa8af180a (diff) | |
download | Qt-23717f80cd0f2e6a63aaabc1f62a377d13f76540.zip Qt-23717f80cd0f2e6a63aaabc1f62a377d13f76540.tar.gz Qt-23717f80cd0f2e6a63aaabc1f62a377d13f76540.tar.bz2 |
execute some loops even in cumulative mode
we execute foreach loops now. this is (mostly) safe nowadays, because
a previous change added precautions against exponential value list
growth, so it's unlikely that two nested loops would keep the cpu busy
for a day as before.
we continue to exclude forever loops and loops with excessive integer
counts.
Task-number: QTBUG-8550
Change-Id: Iaa116086986cc7fd5023834753f791dd205102e5
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
(cherry picked from qttools/dd4d594c787a62fa8aa12695c5d115c71b59bacd)
Diffstat (limited to 'tests/auto')
-rw-r--r-- | tests/auto/linguist/lupdate/testdata/good/proparsingpri/project.pro | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/auto/linguist/lupdate/testdata/good/proparsingpri/project.pro b/tests/auto/linguist/lupdate/testdata/good/proparsingpri/project.pro index 5e23538..73c6d19 100644 --- a/tests/auto/linguist/lupdate/testdata/good/proparsingpri/project.pro +++ b/tests/auto/linguist/lupdate/testdata/good/proparsingpri/project.pro @@ -1,6 +1,7 @@ include(win/win.pri) -include(mac/mac.pri) -include(unix/unix.pri) +more = mac unix +for(dir, more): \ + include($$dir/$${dir}.pri) include (common/common.pri) # Important: keep the space before the '(' include(relativity/relativity.pri) |