From 71caf1423fe5f0eed652210f8158c95fc8a10219 Mon Sep 17 00:00:00 2001 From: Amar Tumballi Date: Fri, 12 Apr 2019 08:16:56 +0530 Subject: tests: add tests for different signal handling Also some cleanup: * old-protocol.t was actually added to make sure we have line-coverage * first-test.t should have been removed as per the comment. It doesn't do anything. * add statvfs to rpc-coverage so we can cover statvfs in few xlators. updates: bz#1693692 Change-Id: Ie8651ce007de484c4abced16b4de765aa5e517be Signed-off-by: Amar Tumballi --- tests/basic/rpc-coverage.sh | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests/basic/rpc-coverage.sh') diff --git a/tests/basic/rpc-coverage.sh b/tests/basic/rpc-coverage.sh index 4b6759a59eb..ad145559c41 100755 --- a/tests/basic/rpc-coverage.sh +++ b/tests/basic/rpc-coverage.sh @@ -419,9 +419,15 @@ function test_rmdir() rm -rf $PFX || fail "rm -rf" } +function test_statvfs() +{ + df $DIR 2>&1 || fail "df" +} + function run_tests() { + test_statvfs; test_mkdir; test_create; test_statfs; -- cgit