]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Adjust the jitter range to +-3*stddev
authorOndřej Surý <ondrej@sury.org>
Fri, 8 Nov 2019 06:05:02 +0000 (07:05 +0100)
committerOndřej Surý <ondrej@sury.org>
Fri, 8 Nov 2019 06:05:02 +0000 (07:05 +0100)
bin/tests/system/autosign/tests.sh

index f9fa91be8e353a47b9027cc6ecac928fab805f18..9641bcab424f1f97f8051b01f556aa964dc0976c 100755 (executable)
@@ -97,8 +97,8 @@ checkjitter () {
        done
        _stddev=$(echo "sqrt($_stddev/$_count)" | bc)
 
-       # We expect the number of signatures not to exceed the mean +- 2.5 * stddev.
-       _limit=$(((_stddev*25)/10))
+       # We expect the number of signatures not to exceed the mean +- 3 * stddev.
+       _limit=$((_stddev*3))
        _low=$((_mean-_limit))
        _high=$((_mean+_limit))
        # Find outliers.