Skip to content

Commit

Permalink
Update single file tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesLee-Jones committed Jul 11, 2024
1 parent 697b58a commit b8fdcf4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/single_file/signed_int_constants.cc.expected
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ static bool __dredd_enabled_mutation(int local_mutation_id) {
if (!token.empty()) {
int value = std::stoi(token);
int local_value = value - 0;
if (local_value >= 0 && local_value < 8) {
if (local_value >= 0 && local_value < 23) {
enabled_bitset[local_value / 64] |= (static_cast<uint64_t>(1) << (local_value % 64));
some_mutation_enabled = true;
}
Expand Down
2 changes: 1 addition & 1 deletion test/single_file/signed_int_constants.cc.noopt.expected
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ static bool __dredd_enabled_mutation(int local_mutation_id) {
if (!token.empty()) {
int value = std::stoi(token);
int local_value = value - 0;
if (local_value >= 0 && local_value < 8) {
if (local_value >= 0 && local_value < 41) {
enabled_bitset[local_value / 64] |= (static_cast<uint64_t>(1) << (local_value % 64));
some_mutation_enabled = true;
}
Expand Down

0 comments on commit b8fdcf4

Please sign in to comment.