Skip to content

Commit

Permalink
A bit more testing in Many_ConcurrentReaders (#6782)
Browse files Browse the repository at this point in the history
  • Loading branch information
finnschiermer authored and nicola-cab committed Jul 12, 2023
1 parent 540b4bd commit e5cbfa4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/test_shared.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1396,6 +1396,9 @@ TEST(Many_ConcurrentReaders)
for (int i = 0; i < 1000; ++i) {
DBRef sg_r = DB::create(path_str);
ReadTransaction rt(sg_r);
ConstTableRef t = rt.get_table("table");
auto col_key = t->get_column_key("column");
REALM_ASSERT(t->get_object(0).get<StringData>(col_key) == "string");
rt.get_group().verify();
}
}
Expand Down Expand Up @@ -1628,7 +1631,7 @@ TEST(Shared_RobustAgainstDeathDuringWrite)
#endif // encryption enabled

// not ios or android
//#endif // defined TEST_ROBUSTNESS && defined ENABLE_ROBUST_AGAINST_DEATH_DURING_WRITE && !REALM_ENABLE_ENCRYPTION
// #endif // defined TEST_ROBUSTNESS && defined ENABLE_ROBUST_AGAINST_DEATH_DURING_WRITE && !REALM_ENABLE_ENCRYPTION


TEST(Shared_SpaceOveruse)
Expand Down

0 comments on commit e5cbfa4

Please sign in to comment.