From d60c0dbdf390c4fe7ad66bc2f79ee076bb046fb1 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Mon, 17 Aug 2020 22:31:18 -0700 Subject: [PATCH] ZTS: ztest may cause mmp tests failures The mmp_exported_import and mmp_inactive_import tests depend on ztest simulating an active pool. If ztest unexpectedly terminates due to an unrelated issue the test case will fail. Since ztest is not yet 100% reliable I've added these tests to the maybe exception list. They can be removed when the issues with ztest are resolved or if the test cases are updated to handle these unexpected failures. Reviewed-by: George Melikov Signed-off-by: Brian Behlendorf Closes #10726 --- tests/test-runner/bin/zts-report.py.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test-runner/bin/zts-report.py.in b/tests/test-runner/bin/zts-report.py.in index d0b9191f76..6b5cd191c5 100755 --- a/tests/test-runner/bin/zts-report.py.in +++ b/tests/test-runner/bin/zts-report.py.in @@ -266,6 +266,8 @@ elif sys.platform.startswith('linux'): 'cli_root/zpool_reopen/zpool_reopen_003_pos': ['FAIL', known_reason], 'limits/filesystem_limit': ['SKIP', known_reason], 'limits/snapshot_limit': ['SKIP', known_reason], + 'mmp/mmp_exported_import': ['FAIL', known_reason], + 'mmp/mmp_inactive_import': ['FAIL', known_reason], 'refreserv/refreserv_raidz': ['FAIL', known_reason], 'rsend/rsend_007_pos': ['FAIL', known_reason], 'rsend/rsend_010_pos': ['FAIL', known_reason],