We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 433ce37 commit a05640dCopy full SHA for a05640d
1 file changed
test/Files_SerialIO/close_and_reopen_test.cpp
@@ -65,6 +65,8 @@ auto run_test_filebased(
65
REQUIRE(writeIterations(series)[1].closed() == !synchronous);
66
// We are in file-based iteration encoding, so the old iteration should
67
// remain accessible
68
+ // Note: this will create a particlespath at iteration 0, which will
69
+ // lead to parsing warnings in HDF5.
70
writeIterations(series).at(0);
71
}
72
{
@@ -249,6 +251,10 @@ auto run_test_groupbased(
249
251
250
252
else
253
254
+ // Cannot go back to an old IO step
255
+ // Since the other backends do not use IO steps,
256
+ // going back to an old Iteration should remain possible even
257
+ // in synchronous modes
258
REQUIRE_THROWS(writeIterations(series).at(0));
259
260
0 commit comments