diff options
Diffstat (limited to 'tests/fake_apk_test')
-rwxr-xr-x | tests/fake_apk_test | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/fake_apk_test b/tests/fake_apk_test index 8ceba87..8dd140b 100755 --- a/tests/fake_apk_test +++ b/tests/fake_apk_test @@ -24,10 +24,13 @@ fake_apk_add_body() { fake_apk_audit_body() { init_env - mkdir etc - echo "foo" > etc/hostname atf_check -s exit:0 \ -o no-match:"DEBUG: fake apk" \ -o match:"U etc/hostname" \ apk audit + + atf_check -s exit:0 \ + -o no-match:"DEBUG: fake apk" \ + -o match:"etc/hostname" \ + apk audit --quiet } |