Regression tests

This commit is contained in:
o9000 2017-08-30 15:39:34 +02:00
parent eef665c896
commit b003a2b1e3

View file

@ -214,10 +214,10 @@ def main():
print("```") print("```")
print(diff_staged) print(diff_staged)
print("```") print("```")
out, _ = run("lsb_release -sd", True) out, _ = run("lsb_release -sd", True).communicate()
out.strip() out.strip()
print("System:", out) print("System:", out)
out, _ = run("cat /proc/cpuinfo | grep 'model name' | head -n1 | cut -d ':' -f2", True) out, _ = run("cat /proc/cpuinfo | grep 'model name' | head -n1 | cut -d ':' -f2", True).communicate()
out.strip() out.strip()
print("Hardware:", out) print("Hardware:", out)
print("") print("")