diff options
author | PMR <pmr@pmr-lander> | 2019-09-10 13:05:42 +0000 |
---|---|---|
committer | PMR <pmr@pmr-lander> | 2019-09-10 13:05:42 +0000 |
commit | d6faca9c348fa7027ed14645c223e015ecd0fc40 (patch) | |
tree | 1c03b3c7930ba7ca9ba81ec1269add7a9d6e8a26 | |
parent | 65fa64b17f2dc63afbbf6fbe4a6120f09adf49f8 (diff) | |
parent | f04ed3c1b4c3cc26a80baab8058fbc58e1ed6d90 (diff) |
Merge #372539 from ~kissiel/plainbox-provider-checkbox:less-is-more-so-is-cat
-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 |