From eef665c89675d6b829caf852d85bf26487892a47 Mon Sep 17 00:00:00 2001 From: o9000 Date: Wed, 30 Aug 2017 15:39:10 +0200 Subject: [PATCH] Regression tests --- test/regression.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/regression.py b/test/regression.py index 876b862..c138408 100755 --- a/test/regression.py +++ b/test/regression.py @@ -214,6 +214,12 @@ def main(): print("```") print(diff_staged) print("```") + out, _ = run("lsb_release -sd", True) + out.strip() + print("System:", out) + out, _ = run("cat /proc/cpuinfo | grep 'model name' | head -n1 | cut -d ':' -f2", True) + out.strip() + print("Hardware:", out) print("") print("# Compilation") cmake_flags = "-DCMAKE_BUILD_TYPE=Debug -DENABLE_ASAN=ON"