Skip to content
Snippets Groups Projects
Commit 0e2e6de1 authored by Louis Gombert's avatar Louis Gombert :speech_balloon:
Browse files

HTGSource: fix distributed test

parent fa6311d4
No related branches found
No related tags found
No related merge requests found
......@@ -110,11 +110,13 @@ int TestHyperTreeGridSourceDistributed(int argc, char* argv[])
// Default to 0, ignore chars at the end
source2.Descriptor = "...2.101";
source2.ExpectedProcess = { 0, 0, 0, 2 };
source2.Mask = "1011";
source2.ExpectedProcess = { 0, -1, 0, 2 };
success &= ::TestSource(source2, myRank, nbRanks);
source2.Descriptor = ".1.0.2.";
source2.ExpectedProcess = { 0, 1, 0, 2 };
source2.Mask = "1011";
source2.ExpectedProcess = { 0, -1, 0, 2 };
success &= ::TestSource(source2, myRank, nbRanks);
controller->Finalize();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment