From 9a291b43f7eee05634309d1ce4962a4eae2c669c Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 3 Jul 2009 14:38:29 +0200 Subject: benchmark: Don't use envstore to save the test values Saving them that way takes way too long, write them directly into the store file instead. --- test/main | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/main b/test/main index d6a3f97..6aec01b 100755 --- a/test/main +++ b/test/main @@ -160,10 +160,11 @@ if ((benchmark)) { echo "## some benchmarks now..." TIMEFMT='%*E real, %*U user, %*S system - %P%% CPU - %J' - echo "# adding 5000 vars (this could take a _long_ time)" - for i in {0..5000}; { - (( i % 500 )) || echo "# $((5000-i)) to go" - $envstore save $i $i$i$i + echo "# adding 10000 vars (this could take a _long_ time)" + $envstore clear + for i in {0..10000}; { + (( i % 1000 )) || echo "# $((10000-i)) to go" + echo "$i $i$i$i" >> $store_file } echo -- cgit v1.2.3