Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJason Perkins <starkos@industriousone.com>2014-04-03 19:10:28 +0400
committerJason Perkins <starkos@industriousone.com>2014-04-03 19:10:28 +0400
commita411a4265650779087894d662a84c028c3ca1035 (patch)
tree931c1fc72d0e2a0efb51a8a84f4386813f809a81 /tests
parente418c1d53e0ce2bee9e6a1ff438d1362eca722d6 (diff)
Issue #236: Fix failing PCH unit tests
Diffstat (limited to 'tests')
-rw-r--r--tests/actions/make/test_make_pch.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/actions/make/test_make_pch.lua b/tests/actions/make/test_make_pch.lua
index 18e6026..500f2ae 100644
--- a/tests/actions/make/test_make_pch.lua
+++ b/tests/actions/make/test_make_pch.lua
@@ -66,6 +66,7 @@
_.pchrules(prj)
test.capture [[
ifneq (,$(PCH))
+.NOTPARALLEL: $(GCH) $(PCH)
$(GCH): $(PCH)
@echo $(notdir $<)
$(SILENT) $(CXX) -x c++-header $(ALL_CXXFLAGS) -MMD -MP $(DEFINES) $(INCLUDES) -o "$@" -MF "$(@:%.gch=%.d)" -c "$<"
@@ -79,6 +80,7 @@ $(GCH): $(PCH)
_.pchrules(prj)
test.capture [[
ifneq (,$(PCH))
+.NOTPARALLEL: $(GCH) $(PCH)
$(GCH): $(PCH)
@echo $(notdir $<)
$(SILENT) $(CC) -x c-header $(ALL_CFLAGS) -MMD -MP $(DEFINES) $(INCLUDES) -o "$@" -MF "$(@:%.gch=%.d)" -c "$<"