From b3de93ac016d5f6a6c2b4e7164e103002ec02589 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Tue, 15 Jun 2021 19:41:24 -0700 Subject: [PATCH] Rebaseline code size test expectations. NFC --- tests/code_size/hello_webgl2_wasm.json | 8 ++++---- tests/code_size/hello_webgl2_wasm2js.json | 8 ++++---- tests/code_size/hello_webgl_wasm.json | 8 ++++---- tests/code_size/hello_webgl_wasm2js.json | 8 ++++---- tests/code_size/random_printf_wasm.json | 8 ++++---- tests/code_size/random_printf_wasm2js.json | 8 ++++---- tests/other/metadce/hello_libcxx_O2.size | 2 +- tests/other/metadce/hello_libcxx_O2_fexceptions.size | 2 +- .../hello_libcxx_O2_fexceptions_DEMANGLE_SUPPORT.size | 2 +- tests/other/metadce/hello_world.size | 2 +- tests/other/metadce/hello_world_O1.size | 2 +- tests/other/metadce/hello_world_O2.size | 2 +- tests/other/metadce/hello_world_O3.size | 2 +- tests/other/metadce/hello_world_O3_MAIN_MODULE_2.size | 2 +- tests/other/metadce/hello_world_Os.size | 2 +- tests/other/metadce/hello_world_Oz.size | 2 +- tests/other/metadce/mem_O3.size | 2 +- tests/other/metadce/mem_O3_ALLOW_MEMORY_GROWTH.size | 2 +- .../mem_O3_ALLOW_MEMORY_GROWTH_STANDALONE_WASM.size | 2 +- tests/other/metadce/mem_O3_STANDALONE_WASM.size | 2 +- tests/other/metadce/mem_no_argv_O3_STANDALONE_WASM.size | 2 +- .../metadce/mem_no_main_O3_STANDALONE_WASM_noentry.size | 2 +- .../metadce/minimal_Oz_USE_PTHREADS_PROXY_TO_PTHREAD.size | 2 +- 23 files changed, 41 insertions(+), 41 deletions(-) diff --git a/tests/code_size/hello_webgl2_wasm.json b/tests/code_size/hello_webgl2_wasm.json index 115845e22f282..a21c7fec9a7f5 100644 --- a/tests/code_size/hello_webgl2_wasm.json +++ b/tests/code_size/hello_webgl2_wasm.json @@ -3,8 +3,8 @@ "a.html.gz": 377, "a.js": 4987, "a.js.gz": 2406, - "a.wasm": 10343, - "a.wasm.gz": 6687, - "total": 15893, - "total_gz": 9470 + "a.wasm": 10310, + "a.wasm.gz": 6660, + "total": 15860, + "total_gz": 9443 } diff --git a/tests/code_size/hello_webgl2_wasm2js.json b/tests/code_size/hello_webgl2_wasm2js.json index 13dea025e3548..71aa9fc386be0 100644 --- a/tests/code_size/hello_webgl2_wasm2js.json +++ b/tests/code_size/hello_webgl2_wasm2js.json @@ -1,10 +1,10 @@ { "a.html": 588, "a.html.gz": 386, - "a.js": 19948, - "a.js.gz": 8191, + "a.js": 19895, + "a.js.gz": 8158, "a.mem": 3171, "a.mem.gz": 2714, - "total": 23707, - "total_gz": 11291 + "total": 23654, + "total_gz": 11258 } diff --git a/tests/code_size/hello_webgl_wasm.json b/tests/code_size/hello_webgl_wasm.json index 213ea3e0dcdb1..3037bbea2e082 100644 --- a/tests/code_size/hello_webgl_wasm.json +++ b/tests/code_size/hello_webgl_wasm.json @@ -3,8 +3,8 @@ "a.html.gz": 377, "a.js": 4471, "a.js.gz": 2236, - "a.wasm": 10343, - "a.wasm.gz": 6687, - "total": 15377, - "total_gz": 9300 + "a.wasm": 10310, + "a.wasm.gz": 6660, + "total": 15344, + "total_gz": 9273 } diff --git a/tests/code_size/hello_webgl_wasm2js.json b/tests/code_size/hello_webgl_wasm2js.json index c44f53d53f8b5..9f4e33d4c7792 100644 --- a/tests/code_size/hello_webgl_wasm2js.json +++ b/tests/code_size/hello_webgl_wasm2js.json @@ -1,10 +1,10 @@ { "a.html": 588, "a.html.gz": 386, - "a.js": 19430, - "a.js.gz": 8023, + "a.js": 19377, + "a.js.gz": 7992, "a.mem": 3171, "a.mem.gz": 2714, - "total": 23189, - "total_gz": 11123 + "total": 23136, + "total_gz": 11092 } diff --git a/tests/code_size/random_printf_wasm.json b/tests/code_size/random_printf_wasm.json index 836756f1d56ba..e48a36337c8b2 100644 --- a/tests/code_size/random_printf_wasm.json +++ b/tests/code_size/random_printf_wasm.json @@ -1,6 +1,6 @@ { - "a.html": 12609, - "a.html.gz": 6723, - "total": 12609, - "total_gz": 6723 + "a.html": 12521, + "a.html.gz": 6725, + "total": 12521, + "total_gz": 6725 } diff --git a/tests/code_size/random_printf_wasm2js.json b/tests/code_size/random_printf_wasm2js.json index 7ccd8cbebd37c..f06d49b5fbb4b 100644 --- a/tests/code_size/random_printf_wasm2js.json +++ b/tests/code_size/random_printf_wasm2js.json @@ -1,6 +1,6 @@ { - "a.html": 17384, - "a.html.gz": 7487, - "total": 17384, - "total_gz": 7487 + "a.html": 17343, + "a.html.gz": 7450, + "total": 17343, + "total_gz": 7450 } diff --git a/tests/other/metadce/hello_libcxx_O2.size b/tests/other/metadce/hello_libcxx_O2.size index ddd0e6075af3e..003652c90ca4b 100644 --- a/tests/other/metadce/hello_libcxx_O2.size +++ b/tests/other/metadce/hello_libcxx_O2.size @@ -1 +1 @@ -124667 +124612 diff --git a/tests/other/metadce/hello_libcxx_O2_fexceptions.size b/tests/other/metadce/hello_libcxx_O2_fexceptions.size index 076f437256722..72c842167b495 100644 --- a/tests/other/metadce/hello_libcxx_O2_fexceptions.size +++ b/tests/other/metadce/hello_libcxx_O2_fexceptions.size @@ -1 +1 @@ -166674 +165905 diff --git a/tests/other/metadce/hello_libcxx_O2_fexceptions_DEMANGLE_SUPPORT.size b/tests/other/metadce/hello_libcxx_O2_fexceptions_DEMANGLE_SUPPORT.size index 67b5e5fd22722..eb09e20751187 100644 --- a/tests/other/metadce/hello_libcxx_O2_fexceptions_DEMANGLE_SUPPORT.size +++ b/tests/other/metadce/hello_libcxx_O2_fexceptions_DEMANGLE_SUPPORT.size @@ -1 +1 @@ -224607 +226050 diff --git a/tests/other/metadce/hello_world.size b/tests/other/metadce/hello_world.size index 6c918bd7405d9..e411c3077d67d 100644 --- a/tests/other/metadce/hello_world.size +++ b/tests/other/metadce/hello_world.size @@ -1 +1 @@ -11751 +11681 diff --git a/tests/other/metadce/hello_world_O1.size b/tests/other/metadce/hello_world_O1.size index a0198be084430..6ee72971bf63e 100644 --- a/tests/other/metadce/hello_world_O1.size +++ b/tests/other/metadce/hello_world_O1.size @@ -1 +1 @@ -2400 +2403 diff --git a/tests/other/metadce/hello_world_O2.size b/tests/other/metadce/hello_world_O2.size index 6f6d045ba5536..661b0f27950a3 100644 --- a/tests/other/metadce/hello_world_O2.size +++ b/tests/other/metadce/hello_world_O2.size @@ -1 +1 @@ -2016 +2025 diff --git a/tests/other/metadce/hello_world_O3.size b/tests/other/metadce/hello_world_O3.size index b9eea8f079dcc..881a69e46c98d 100644 --- a/tests/other/metadce/hello_world_O3.size +++ b/tests/other/metadce/hello_world_O3.size @@ -1 +1 @@ -1700 +1705 diff --git a/tests/other/metadce/hello_world_O3_MAIN_MODULE_2.size b/tests/other/metadce/hello_world_O3_MAIN_MODULE_2.size index 12486c8fcf747..7552573963390 100644 --- a/tests/other/metadce/hello_world_O3_MAIN_MODULE_2.size +++ b/tests/other/metadce/hello_world_O3_MAIN_MODULE_2.size @@ -1 +1 @@ -10135 +10144 diff --git a/tests/other/metadce/hello_world_Os.size b/tests/other/metadce/hello_world_Os.size index b9eea8f079dcc..881a69e46c98d 100644 --- a/tests/other/metadce/hello_world_Os.size +++ b/tests/other/metadce/hello_world_Os.size @@ -1 +1 @@ -1700 +1705 diff --git a/tests/other/metadce/hello_world_Oz.size b/tests/other/metadce/hello_world_Oz.size index 23ea2188912c0..837dd962a1922 100644 --- a/tests/other/metadce/hello_world_Oz.size +++ b/tests/other/metadce/hello_world_Oz.size @@ -1 +1 @@ -1247 +1258 diff --git a/tests/other/metadce/mem_O3.size b/tests/other/metadce/mem_O3.size index aa255d4272540..a09977be4b528 100644 --- a/tests/other/metadce/mem_O3.size +++ b/tests/other/metadce/mem_O3.size @@ -1 +1 @@ -5993 +5997 diff --git a/tests/other/metadce/mem_O3_ALLOW_MEMORY_GROWTH.size b/tests/other/metadce/mem_O3_ALLOW_MEMORY_GROWTH.size index f495a82980c64..d2547113f2a19 100644 --- a/tests/other/metadce/mem_O3_ALLOW_MEMORY_GROWTH.size +++ b/tests/other/metadce/mem_O3_ALLOW_MEMORY_GROWTH.size @@ -1 +1 @@ -5994 +5998 diff --git a/tests/other/metadce/mem_O3_ALLOW_MEMORY_GROWTH_STANDALONE_WASM.size b/tests/other/metadce/mem_O3_ALLOW_MEMORY_GROWTH_STANDALONE_WASM.size index 84c42b45f99d1..8c77918b2ffbe 100644 --- a/tests/other/metadce/mem_O3_ALLOW_MEMORY_GROWTH_STANDALONE_WASM.size +++ b/tests/other/metadce/mem_O3_ALLOW_MEMORY_GROWTH_STANDALONE_WASM.size @@ -1 +1 @@ -6320 +6324 diff --git a/tests/other/metadce/mem_O3_STANDALONE_WASM.size b/tests/other/metadce/mem_O3_STANDALONE_WASM.size index 25c96b48ac912..861ef7370fa51 100644 --- a/tests/other/metadce/mem_O3_STANDALONE_WASM.size +++ b/tests/other/metadce/mem_O3_STANDALONE_WASM.size @@ -1 +1 @@ -6243 +6247 diff --git a/tests/other/metadce/mem_no_argv_O3_STANDALONE_WASM.size b/tests/other/metadce/mem_no_argv_O3_STANDALONE_WASM.size index b03039a5175f7..2b76d71d047b8 100644 --- a/tests/other/metadce/mem_no_argv_O3_STANDALONE_WASM.size +++ b/tests/other/metadce/mem_no_argv_O3_STANDALONE_WASM.size @@ -1 +1 @@ -6051 +6055 diff --git a/tests/other/metadce/mem_no_main_O3_STANDALONE_WASM_noentry.size b/tests/other/metadce/mem_no_main_O3_STANDALONE_WASM_noentry.size index 7282ef1371a2c..aba9d06f8d8db 100644 --- a/tests/other/metadce/mem_no_main_O3_STANDALONE_WASM_noentry.size +++ b/tests/other/metadce/mem_no_main_O3_STANDALONE_WASM_noentry.size @@ -1 +1 @@ -6017 +6021 diff --git a/tests/other/metadce/minimal_Oz_USE_PTHREADS_PROXY_TO_PTHREAD.size b/tests/other/metadce/minimal_Oz_USE_PTHREADS_PROXY_TO_PTHREAD.size index ac0794c9519fa..872cf43d3722d 100644 --- a/tests/other/metadce/minimal_Oz_USE_PTHREADS_PROXY_TO_PTHREAD.size +++ b/tests/other/metadce/minimal_Oz_USE_PTHREADS_PROXY_TO_PTHREAD.size @@ -1 +1 @@ -15868 +15872