From 541d3f286afab91b21c1468f82471883f45315ac Mon Sep 17 00:00:00 2001 From: Will Miles Date: Sun, 14 Jul 2024 11:38:29 -0400 Subject: [PATCH] stress_test: Make it worse Read 40 copies! --- tools/stress_test.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/stress_test.sh b/tools/stress_test.sh index 4ea672405..0a11c4332 100644 --- a/tools/stress_test.sh +++ b/tools/stress_test.sh @@ -18,8 +18,9 @@ JSON_TARGETS=('json/state' 'json/info' 'json/si', 'json/palettes' 'json/fxdata' FILE_TARGETS=('' 'iro.js' 'rangetouch.js' 'settings' 'settings/wifi') # Replicate one target many times function replicate() { - printf "${1}?%d " {1..8} + printf "${1}?%d " {1..40} } +read -a JSON_TINY_TARGETS <<< $(replicate "json/nodes") read -a JSON_SMALL_TARGETS <<< $(replicate "json/info") read -a JSON_LARGE_TARGETS <<< $(replicate "json/si") read -a JSON_LARGER_TARGETS <<< $(replicate "json/fxdata")