Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(129)

Unified Diff: tests/spec2k/Makefile.common

Issue 1046323005: Add sandboxed pnacl-sz translator tests to the bots. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Fix copy/paste/modify error Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « buildbot/buildbot_spec2k.sh ('k') | tests/spec2k/run_all.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/spec2k/Makefile.common
diff --git a/tests/spec2k/Makefile.common b/tests/spec2k/Makefile.common
index d701c4bdc5ad389654bd104be1c8b7f836d76d04..50b217ea164160651bae66750fe17c09d6f15416 100644
--- a/tests/spec2k/Makefile.common
+++ b/tests/spec2k/Makefile.common
@@ -380,12 +380,12 @@ $(IT).pnacl_translator_fast.opt.hw.arm:
$(IT).pnacl_translator_1thread.opt.hw.arm:
$(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $(IT).opt.stripped.pexe \
- -o $@ -arch arm -split-module=1
+ -o $@ -arch arm -threads=seq
@$(call LOG_TIME_AND_SIZE,$@,$(IT))
$(IT).pnacl_translator_fast_1thread.opt.hw.arm:
$(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $(IT).opt.stripped.pexe \
- $(PNACL_TRANSLATOR_FLAGS_FAST) -o $@ -arch arm -split-module=1
+ $(PNACL_TRANSLATOR_FLAGS_FAST) -o $@ -arch arm -threads=seq
@$(call LOG_TIME_AND_SIZE,$@,$(IT))
@@ -419,24 +419,29 @@ $(IT).pnacl_translator.opt.x8632: $(IT).opt.stripped.pexe
$(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $^ -o $@ -arch x86-32
@$(call LOG_TIME_AND_SIZE,$@,$(IT))
-$(IT).pnacl_translator.opt.sz.x8632: $(IT).opt.stripped.pexe
- $(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $(PNACL_SZ_FLAGS) $^ \
- -o $@ -arch x86-32
- @$(call LOG_TIME_AND_SIZE,$@,$(IT))
-
$(IT).pnacl_translator_fast.opt.x8632: $(IT).opt.stripped.pexe
$(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $(PNACL_TRANSLATOR_FLAGS_FAST) \
$^ -o $@ -arch x86-32
@$(call LOG_TIME_AND_SIZE,$@,$(IT))
+$(IT).pnacl_translator_fast.opt.sz.x8632: $(IT).opt.stripped.pexe
+ $(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $(PNACL_TRANSLATOR_FLAGS_FAST) \
+ $(PNACL_SZ_FLAGS) $^ -o $@ -arch x86-32
+ @$(call LOG_TIME_AND_SIZE,$@,$(IT))
+
$(IT).pnacl_translator_1thread.opt.x8632: $(IT).opt.stripped.pexe
$(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $^ -o $@ -arch x86-32 \
- -split-module=1
+ -threads=seq
@$(call LOG_TIME_AND_SIZE,$@,$(IT))
$(IT).pnacl_translator_fast_1thread.opt.x8632: $(IT).opt.stripped.pexe
$(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $(PNACL_TRANSLATOR_FLAGS_FAST) \
- $^ -o $@ -arch x86-32 -split-module=1
+ $^ -o $@ -arch x86-32 -threads=seq
+ @$(call LOG_TIME_AND_SIZE,$@,$(IT))
+
+$(IT).pnacl_translator_fast_1thread.opt.sz.x8632: $(IT).opt.stripped.pexe
+ $(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $(PNACL_SZ_FLAGS) \
+ $^ -o $@ -arch x86-32 -threads=seq
@$(call LOG_TIME_AND_SIZE,$@,$(IT))
@@ -466,10 +471,10 @@ $(IT).pnacl_translator_fast.opt.x8664: $(IT).opt.stripped.pexe
$(IT).pnacl_translator_1thread.opt.x8664: $(IT).opt.stripped.pexe
$(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $^ -o $@ -arch x86-64 \
- -split-module=1
+ -threads=seq
@$(call LOG_TIME_AND_SIZE,$@,$(IT))
$(IT).pnacl_translator_fast_1thread.opt.x8664: $(IT).opt.stripped.pexe
$(PNACL_TRANSLATOR_SB) $(PNACL_FLAGS) $(PNACL_TRANSLATOR_FLAGS_FAST) \
- $^ -o $@ -arch x86-64 -split-module=1
+ $^ -o $@ -arch x86-64 -threads=seq
@$(call LOG_TIME_AND_SIZE,$@,$(IT))
« no previous file with comments | « buildbot/buildbot_spec2k.sh ('k') | tests/spec2k/run_all.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698