diff options
author | Etienne Dechamps <[email protected]> | 2012-09-28 15:55:03 +0200 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2012-10-03 13:59:02 -0700 |
commit | d13524579162b35189804c357a63993be758b84c (patch) | |
tree | aff8b62aba2822b07aa8297f0df7e2822e67cd5b /cmd/ztest | |
parent | 6aec1cd5a674d7ee9917a75fee9a82fc97cfdf77 (diff) |
Temporarily disable the reguid test.
Currently, ztest fails with the following error:
error: Pool 'ztest' has encountered an uncorrectable I/O failure
and the failure mode property for this pool is set to panic.
We know how to fix it (see issue #939), but it may take some time
before we get around to merging the fix, which has some heavy
dependencies.
In the mean time, it is not ideal to be unable to use ztest just
because of a small isolated issue, so this patch works around the
problem by disabling the reguid test. This is just a temporary hack to
keep ztest usable.
The reguid test will be enabled again when the proper fix is merged.
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #997
Diffstat (limited to 'cmd/ztest')
-rw-r--r-- | cmd/ztest/ztest.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cmd/ztest/ztest.c b/cmd/ztest/ztest.c index 4aca527e8..09d6e9526 100644 --- a/cmd/ztest/ztest.c +++ b/cmd/ztest/ztest.c @@ -292,7 +292,13 @@ ztest_info_t ztest_info[] = { { ztest_fault_inject, 1, &zopt_sometimes }, { ztest_ddt_repair, 1, &zopt_sometimes }, { ztest_dmu_snapshot_hold, 1, &zopt_sometimes }, + /* + * The reguid test is currently broken. Disable it until + * we get around to fixing it. + */ +#if 0 { ztest_reguid, 1, &zopt_sometimes }, +#endif { ztest_spa_rename, 1, &zopt_rarely }, { ztest_scrub, 1, &zopt_rarely }, { ztest_dsl_dataset_promote_busy, 1, &zopt_rarely }, |