Tests: Avoid race condition when building with multiple jobs

Change-Id: Ia5a110812694d03e6f6e02cf66b4aaf209224910
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Christian Stenger
2017-02-23 08:22:31 +01:00
parent 0e814daa5e
commit a803ee062b

View File

@@ -1,16 +1,15 @@
TEMPLATE = subdirs
gdb.file = gdb.pro
simplifytypes.file = simplifytypes.pro
# Avoid race condition when compiling with multiple jobs or moc_predefs.h might get used and
# overridden at the same time as the sub projects are using the same build directory.
# Correct would be to completely rearrange these sub projects into sub directories, using the
# quick fix instead.
CONFIG += ordered
# avoid race condition when compiling with multiple jobs
dumpers.depends = gdb simplifytypes
dumpers.file = dumpers.pro
SUBDIRS += gdb
SUBDIRS += simplifytypes
SUBDIRS += dumpers
SUBDIRS += gdb.pro
SUBDIRS += simplifytypes.pro
SUBDIRS += dumpers.pro
SUBDIRS += namedemangler.pro
SUBDIRS += disassembler.pro
SUBDIRS += offsets.pro