Skip to content

Commit

Permalink
Put Append tests in their own folders
Browse files Browse the repository at this point in the history
This makes repeated application of tests possible
  • Loading branch information
franzpoeschel committed Oct 12, 2022
1 parent a7ac0a3 commit d00215f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/SerialIOTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6507,21 +6507,21 @@ TEST_CASE("append_mode", "[serial]")
}
})END";
append_mode(
"../samples/append_groupbased." + t, false, jsonConfigOld);
"../samples/append/groupbased." + t, false, jsonConfigOld);
append_mode(
"../samples/append_variablebased." + t, false, jsonConfigNew);
"../samples/append/variablebased." + t, false, jsonConfigNew);
append_mode(
"../samples/append_groupbased_newschema." + t,
"../samples/append/groupbased_newschema." + t,
true,
jsonConfigOld);
append_mode(
"../samples/append_variablebased_newschema." + t,
"../samples/append/variablebased_newschema." + t,
true,
jsonConfigNew);
}
else
{
append_mode("../samples/append_groupbased." + t, false);
append_mode("../samples/append/roupbased." + t, false);
}
}
}
Expand Down

0 comments on commit d00215f

Please sign in to comment.