diff options
-rw-r--r-- | units/power-management/jobs.pxu | 4 | ||||
-rw-r--r-- | units/stress/jobs.pxu | 16 |
2 files changed, 10 insertions, 10 deletions
diff --git a/units/power-management/jobs.pxu b/units/power-management/jobs.pxu index 17cd3239..904c2f0e 100644 --- a/units/power-management/jobs.pxu +++ b/units/power-management/jobs.pxu @@ -49,7 +49,7 @@ id: power-management/poweroff-log-attach estimated_duration: 1.0 command: set -o pipefail - more $PLAINBOX_SESSION_SHARE/*poweroff.1.log | cat + cat $PLAINBOX_SESSION_SHARE/*poweroff.1.log _description: This will attach any logs from the power-management/poweroff test to the results. @@ -71,7 +71,7 @@ id: power-management/reboot-log-attach estimated_duration: 1.0 command: set -o pipefail - more $PLAINBOX_SESSION_SHARE/*reboot.1.log | cat + cat $PLAINBOX_SESSION_SHARE/*reboot.1.log _description: This will attach any logs from the power-management/reboot test to the results. diff --git a/units/stress/jobs.pxu b/units/stress/jobs.pxu index 0c710ac0..719e9e1d 100644 --- a/units/stress/jobs.pxu +++ b/units/stress/jobs.pxu @@ -281,7 +281,7 @@ estimated_duration: 1.0 depends: stress/reboot command: set -o pipefail - more $PLAINBOX_SESSION_SHARE/*reboot.100.log | cat + cat $PLAINBOX_SESSION_SHARE/*reboot.100.log plugin: shell category_id: com.canonical.plainbox::stress @@ -302,7 +302,7 @@ id: stress/reboot_30_log depends: stress/reboot_30 command: set -o pipefail - more $PLAINBOX_SESSION_SHARE/*reboot.30.log | cat + cat $PLAINBOX_SESSION_SHARE/*reboot.30.log plugin: shell category_id: com.canonical.plainbox::stress @@ -325,7 +325,7 @@ estimated_duration: 1.0 depends: stress/poweroff command: set -o pipefail - more $PLAINBOX_SESSION_SHARE/*poweroff.100.log | cat + cat $PLAINBOX_SESSION_SHARE/*poweroff.100.log plugin: shell category_id: com.canonical.plainbox::stress @@ -347,7 +347,7 @@ id: stress/poweroff_30_log depends: stress/poweroff_30 command: set -o pipefail - more $PLAINBOX_SESSION_SHARE/*poweroff.30.log | cat + cat $PLAINBOX_SESSION_SHARE/*poweroff.30.log plugin: shell category_id: com.canonical.plainbox::stress @@ -364,7 +364,7 @@ estimated_duration: 1.0 depends: stress/reboot_30_check command: set -o pipefail - more $PLAINBOX_SESSION_SHARE/pm_log_check_reboot.30.log | cat + cat $PLAINBOX_SESSION_SHARE/pm_log_check_reboot.30.log plugin: shell category_id: com.canonical.plainbox::stress @@ -381,7 +381,7 @@ estimated_duration: 1.0 depends: stress/poweroff_30_check command: set -o pipefail - more $PLAINBOX_SESSION_SHARE/pm_log_check_poweroff.30.log | cat + cat $PLAINBOX_SESSION_SHARE/pm_log_check_poweroff.30.log plugin: shell category_id: com.canonical.plainbox::stress @@ -398,7 +398,7 @@ estimated_duration: 1.0 depends: stress/reboot_check command: set -o pipefail - more $PLAINBOX_SESSION_SHARE/pm_log_check_reboot.100.log | cat + cat $PLAINBOX_SESSION_SHARE/pm_log_check_reboot.100.log plugin: shell category_id: com.canonical.plainbox::stress @@ -415,7 +415,7 @@ estimated_duration: 1.0 depends: stress/poweroff_check command: set -o pipefail - more $PLAINBOX_SESSION_SHARE/pm_log_check_poweroff.100.log | cat + cat $PLAINBOX_SESSION_SHARE/pm_log_check_poweroff.100.log plugin: shell category_id: com.canonical.plainbox::stress |