diff options
-rw-r--r-- | units/memory/jobs.pxu | 4 | ||||
-rw-r--r-- | units/suspend/suspend.pxu | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/units/memory/jobs.pxu b/units/memory/jobs.pxu index 9d55649..a44975e 100644 --- a/units/memory/jobs.pxu +++ b/units/memory/jobs.pxu @@ -31,11 +31,11 @@ category_id: com.canonical.plainbox::memory id: memory/meminfo_before_suspend estimated_duration: 1.2 _summary: Store memory info before suspending -command: meminfo_resource > $PLAINBOX_SESSION_SHARE/meminfo_before_suspend +command: meminfo_resource.py > $PLAINBOX_SESSION_SHARE/meminfo_before_suspend _siblings: [ { "id": "after-suspend-memory/meminfo_after_suspend", "_summary": "Compare memory info to the state prior to suspend", - "command": "meminfo_resource | diff $PLAINBOX_SESSION_SHARE/meminfo_before_suspend -", + "command": "meminfo_resource.py | diff $PLAINBOX_SESSION_SHARE/meminfo_before_suspend -", "depends": "com.canonical.certification::suspend/suspend_advanced_auto"} ] diff --git a/units/suspend/suspend.pxu b/units/suspend/suspend.pxu index c111dce..a610b55 100644 --- a/units/suspend/suspend.pxu +++ b/units/suspend/suspend.pxu @@ -46,7 +46,7 @@ category_id: com.canonical.plainbox::suspend id: suspend/memory_before_suspend estimated_duration: 1.2 _summary: Dumps memory info to a file for comparison after suspend -command: meminfo_resource > $PLAINBOX_SESSION_SHARE/meminfo_before_suspend +command: meminfo_resource.py > $PLAINBOX_SESSION_SHARE/meminfo_before_suspend unit: template template-resource: device @@ -575,7 +575,7 @@ estimated_duration: 1.2 depends: suspend/suspend_advanced suspend/memory_before_suspend _description: Verify that all memory is available after resuming from suspend. -command: meminfo_resource | diff $PLAINBOX_SESSION_SHARE/meminfo_before_suspend - +command: meminfo_resource.py | diff $PLAINBOX_SESSION_SHARE/meminfo_before_suspend - plugin: shell category_id: com.canonical.plainbox::suspend @@ -584,7 +584,7 @@ estimated_duration: 1.2 depends: suspend/suspend_advanced_auto suspend/memory_before_suspend _description: Verify that all memory is available after resuming from suspend. -command: meminfo_resource | diff $PLAINBOX_SESSION_SHARE/meminfo_before_suspend - +command: meminfo_resource.py | diff $PLAINBOX_SESSION_SHARE/meminfo_before_suspend - plugin: manual category_id: com.canonical.plainbox::suspend |