Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DAOS-17200 tests: avoid data corruption across all replicas (#16047) #16079

Draft
wants to merge 1 commit into
base: release/2.6
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/tests/suite/daos_rebuild_simple.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/**
* (C) Copyright 2016-2023 Intel Corporation.
* (C) Copyright 2025 Hewlett Packard Enterprise Development LP
*
* SPDX-License-Identifier: BSD-2-Clause-Patent
*/
Expand Down Expand Up @@ -1376,7 +1377,8 @@ rebuild_object_with_csum_error(void **state)
int rc = 0;
int i, j;
daos_handle_t poh = arg->pool.poh;
int ranks = 3; /* will inject corruption to ranks 0-2 */
/* only injection to rank 0, increase to 3 when rebuild could handle checksum error */
int ranks = 1;
daos_key_t dkey, akey;
uint64_t dkey_val;
char *akey_val = "0";
Expand Down