From 1652bf6cb375c2604d2d651264c0fd9385b06281 Mon Sep 17 00:00:00 2001 From: Alex Malyshev Date: Tue, 10 Oct 2023 10:30:32 -0700 Subject: [PATCH] Reduce AutoJIT thresholds in tests for better coverage Summary: Dropping these down ends up exposing more test errors. Reviewed By: swtaarrs Differential Revision: D50122630 fbshipit-source-id: 95f024c66d09e0ac07686614e18d069b46f91844 --- Makefile.pre.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.pre.in b/Makefile.pre.in index 3d5b9340694..5fc312b27ba 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1801,11 +1801,11 @@ define RUN_TESTCINDERJIT endef define RUN_TESTCINDERJITAUTO - $(ASAN_TEST_ENV)$(TESTPYTHON) -X usepycompiler -X jit-auto=1000 -X jit-enable-inline-cache-stats-collection $(1) $(JIT_TEST_RUNNER) $(TESTOPTS) + $(ASAN_TEST_ENV)$(TESTPYTHON) -X usepycompiler -X jit-auto=200 -X jit-enable-inline-cache-stats-collection $(1) $(JIT_TEST_RUNNER) $(TESTOPTS) endef define RUN_TESTCINDERJIT_AUTOPROFILE - $(ASAN_TEST_ENV)$(TESTPYTHON) -X usepycompiler -X jit-auto=1000 -X jit-auto-profile=10 -X jit-enable-inline-cache-stats-collection $(1) $(JIT_TEST_RUNNER) $(TESTOPTS) + $(ASAN_TEST_ENV)$(TESTPYTHON) -X usepycompiler -X jit-auto=200 -X jit-auto-profile=2 -X jit-enable-inline-cache-stats-collection $(1) $(JIT_TEST_RUNNER) $(TESTOPTS) endef testcinder_jit: @DEF_MAKE_RULE@ platform