From 7f7d0a0aa2a00eb0f4f1bc14a0d1f142ecd4924c Mon Sep 17 00:00:00 2001 From: o9000 Date: Wed, 30 Aug 2017 16:40:59 +0200 Subject: [PATCH] Regression tests --- test/regression.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/test/regression.py b/test/regression.py index e1e3bcd..1822526 100755 --- a/test/regression.py +++ b/test/regression.py @@ -280,12 +280,17 @@ def get_default_src_dir(): def check_busy(): - out, _ = run("""top -bn5 | grep "Cpu(s)" | sed "s/.*, *\([0-9.]*\)%* id.*/\1/" | awk '{print 100 - $1"%"}' | tail -n +2""", True).communicate() - load = 0 + out, _ = run("top -bn5 | grep 'Cpu(s)' | grep -o '[0-9\.]* id' | cut -d ' ' -f 1", True).communicate() + load_samples = [] for line in out.split("\n"): - load = max(load, float(line.replace("%", ""))) + print(line) + line = line.strip() + if line: + load_samples.append(100. - float(line)) + load_samples.sort() + load = load_samples[len(load_samples)/2] if load > 10.0: - raise RuntimeError("The system appears busy.") + raise RuntimeError("The system appears busy. Load: %f.1%%." % (load,)) def main():