diff options
author | Rohan McGovern <rohan.mcgovern@nokia.com> | 2012-02-22 10:07:01 +1000 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-02-22 04:48:36 +0100 |
commit | e9015b3bc8827a8276f58bdd41adcac1bcbf2137 (patch) | |
tree | 978476fef1ac1173fc6792e453e1ed74a99f7aa3 /tests/auto/corelib/global/qlogging/test | |
parent | f3141c58badbd2da9eb42021e9704742c3e52a9b (diff) |
Fixed tst_qlogging app silently not compiled in some -fast builds.
When configuring with -fast on Windows, a directory which contains two
.pro files, one SUBDIRS and one not, will have the SUBDIRS Makefile
silently clobbered by the non-SUBDIRS Makefile. In practice, this may
cause various subdirectories to be silently excluded from the build.
Rearrange .pro files for this test to avoid triggering this bug.
Task-number: QTBUG-21168
Change-Id: Ic51941db497d7b8fb004f3c50f5ea24d90ff3114
Reviewed-by: Toby Tomkins <toby.tomkins@nokia.com>
Diffstat (limited to 'tests/auto/corelib/global/qlogging/test')
-rw-r--r-- | tests/auto/corelib/global/qlogging/test/test.pro | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/corelib/global/qlogging/test/test.pro b/tests/auto/corelib/global/qlogging/test/test.pro new file mode 100644 index 0000000000..6e4939ffc9 --- /dev/null +++ b/tests/auto/corelib/global/qlogging/test/test.pro @@ -0,0 +1,4 @@ +CONFIG += testcase parallel_test +TARGET = ../tst_qlogging +QT = core testlib +SOURCES = ../tst_qlogging.cpp |