From 9c274969f1d8cee2012ec16a21ad85d20d585c84 Mon Sep 17 00:00:00 2001 From: Yujun Zhang Date: Wed, 12 Apr 2017 15:37:24 +0800 Subject: Dump collected facts Change-Id: Id0b7b2e94016a73ffcaa2d737af1ca33230b3662 Signed-off-by: Yujun Zhang --- tests/integration/tasks/inxi.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/integration/tasks') diff --git a/tests/integration/tasks/inxi.yaml b/tests/integration/tasks/inxi.yaml index 6c2db6a4..47eb2e73 100644 --- a/tests/integration/tasks/inxi.yaml +++ b/tests/integration/tasks/inxi.yaml @@ -14,7 +14,7 @@ - name: check hardware information with inxi command: inxi -b -c0 -n - register: inxi_log + register: inxi_out # TODO(yujunz) normalize system information, test condition and performance metrics for future data mining # e.g. convert "2 Deca core Intel Xeon E5-2650 v3s (-HT-MCP-SMP-) speed/max: 1200/3000 MHz" to @@ -31,7 +31,7 @@ # cache_mb: None - name: collect system information from inxi collect: - string: "{{ inxi_log.stdout }}" + string: "{{ inxi_out.stdout }}" patterns: - '.+\s+Host:\s+(?P.+)\sKernel' - '.+\sMemory:\s+(?P.+MB)\s' @@ -40,4 +40,5 @@ - '.+\sKernel:\s+(?P.+)\sConsole' - '.+\s+HDD Total Size:\s+(?P.+)\s' - '.+\sproduct:\s+(?P.+)\sv' + dump: 'inix.log' register: system_info -- cgit 1.2.3-korg