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(diff_staged)
print("```")
out, _ = run("lsb_release -sd", True)
out, _ = run("lsb_release -sd", True).communicate()
out.strip()
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()
print("Hardware:", out)
print("")