From 58f916cd6ce9eaeba7b4dbb96c3c77d636f64be5 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Mon, 15 Nov 2021 14:02:07 +0000 Subject: Replace the nterp threshold with the warmup threshold. Replace a hardcoded value with one that can be changed at the command line. Test: test.py Change-Id: I638da5b5cc2e56aa0857d2bf0862a2f8c2020949 --- cmdline/cmdline_parser_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmdline') diff --git a/cmdline/cmdline_parser_test.cc b/cmdline/cmdline_parser_test.cc index 10c651b8e5..38c37ec127 100644 --- a/cmdline/cmdline_parser_test.cc +++ b/cmdline/cmdline_parser_test.cc @@ -479,7 +479,7 @@ TEST_F(CmdlineParserTest, TestJitOptions) { MemoryKiB(16 * MB), "-Xjitmaxsize:16M", M::JITCodeCacheMaxCapacity); } { - EXPECT_SINGLE_PARSE_VALUE(12345u, "-Xjitthreshold:12345", M::JITCompileThreshold); + EXPECT_SINGLE_PARSE_VALUE(12345u, "-Xjitthreshold:12345", M::JITOptimizeThreshold); } } // TEST_F -- cgit v1.2.3-59-g8ed1b