From cb79110ef9bfc48d8f0a8aa6ee7b9f00ea1e8d08 Mon Sep 17 00:00:00 2001 From: camierjs Date: Mon, 20 Jul 2020 11:07:07 -0700 Subject: [PATCH] All 11382 MPI/GPU TMOP tests passed --- tests/unit/miniapps/test_tmop.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/unit/miniapps/test_tmop.cpp b/tests/unit/miniapps/test_tmop.cpp index 0ae6f179d6..f0bca51db3 100644 --- a/tests/unit/miniapps/test_tmop.cpp +++ b/tests/unit/miniapps/test_tmop.cpp @@ -583,13 +583,13 @@ constexpr int JI = 29; static void dump_args(const char *args[]) { - printf("tmop -m %s --fix-bnd -o %s -qo %s -mid %s -tid %s -ls %s%s%s%s%s %s\n", + printf("tmop -m %s -o %s -qo %s -mid %s -tid %s -ls %s%s%s%s%s %s\n", args[MSH], args[POR], args[QOR], args[MID], args[TID], args[LS], args[LC][0] == '0' ? "" : " -lc ", args[LC][0] == '0' ? "" : args[LC], args[NOR][0] == '0' ? "" : " -nor", - args[JI][0] == '0' ? "" : " -jitter", + strlen(args[JI])==1 && args[JI][0] == '0' ? "" : " -jitter", args[ALV]); fflush(0); } @@ -846,12 +846,14 @@ static void tmop_tests(int myid) // CUBE DEFAULT_ARGS; args[MSH] = "cube.mesh"; + args[NI] = "100"; args[RFS] = "0"; + args[JI] = "0.1"; for (int p : {1, 2}) { char por[2] {}; args[POR] = itoa(p, por); - for (int q : {1, 2}) + for (int q : {2, 4}) { if (q < p) { continue; } char qor[2] {}; @@ -888,6 +890,7 @@ static void tmop_tests(int myid) args[RFS] = "0"; args[NOR] = "1"; args[LC] = "3.14"; + args[JI] = "0.1"; for (int p : {1, 2}) { char por[2] {};