Skip to content

Commit

Permalink
Merge pull request #555 from bartlettroscoe/554-add-run-serial (#554)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlettroscoe committed Dec 20, 2022
2 parents 5d37582 + c2f5221 commit 3879de0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/core/TestingFunctionMacro_UnitTests.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4189,6 +4189,7 @@ function(unittest_tribits_add_executable_and_test)
KEYWORDS keyword1 keyword2
DEFINES -DSOMEDEFINE2
TARGET_DEFINES -DSOMEDEFINE1
RUN_SERIAL
ADD_DIR_TO_NAME
LINKER_LANGUAGE C
NUM_MPI_PROCS numProcs
Expand Down Expand Up @@ -4216,7 +4217,7 @@ function(unittest_tribits_add_executable_and_test)
)
unittest_compare_const(
TRIBITS_ADD_TEST_CAPTURE_ARGS
"execName;COMM;serial;mpi;CATEGORIES;category1;category2;HOST;host1;host2;XHOST;host1;host2;HOSTTYPE;hosttype1;hosttype2;XHOSTTYPE;hosttype1;hosttype2;EXCLUDE_IF_NOT_TRUE;var1;var2;NOEXEPREFIX;NOEXESUFFIX;NAME;testName;NAME_POSTFIX;testNamePostfix;DIRECTORY;dir;KEYWORDS;keyword1;keyword2;NUM_MPI_PROCS;numProcs;PASS_REGULAR_EXPRESSION;regex1;regex2;FAIL_REGULAR_EXPRESSION;regex1;regex2;ENVIRONMENT;env1=envval1;env2=envval2;DISABLED;Disable this test because I said;STANDARD_PASS_OUTPUT;WILL_FAIL;TIMEOUT;11.5;LIST_SEPARATOR;<semicolon>;ADD_DIR_TO_NAME;ADDED_TESTS_NAMES_OUT;ADDED_TESTS_NAMES_OUT;ADDED_TESTS_NAMES"
"execName;COMM;serial;mpi;CATEGORIES;category1;category2;HOST;host1;host2;XHOST;host1;host2;HOSTTYPE;hosttype1;hosttype2;XHOSTTYPE;hosttype1;hosttype2;EXCLUDE_IF_NOT_TRUE;var1;var2;NOEXEPREFIX;NOEXESUFFIX;NAME;testName;NAME_POSTFIX;testNamePostfix;DIRECTORY;dir;KEYWORDS;keyword1;keyword2;NUM_MPI_PROCS;numProcs;PASS_REGULAR_EXPRESSION;regex1;regex2;FAIL_REGULAR_EXPRESSION;regex1;regex2;ENVIRONMENT;env1=envval1;env2=envval2;DISABLED;Disable this test because I said;RUN_SERIAL;STANDARD_PASS_OUTPUT;WILL_FAIL;TIMEOUT;11.5;LIST_SEPARATOR;<semicolon>;ADD_DIR_TO_NAME;ADDED_TESTS_NAMES_OUT;ADDED_TESTS_NAMES_OUT;ADDED_TESTS_NAMES"
)
# NOTE: Above, we input the list in reverse order to prove that the
# arguments are handled correctly internally.
Expand Down
4 changes: 3 additions & 1 deletion tribits/core/package_arch/TribitsAddExecutableAndTest.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ endmacro()
# [COMM [serial] [mpi]]
# [ARGS "<arg0> <arg1> ..." "<arg2> <arg3> ..." ...]
# [NUM_MPI_PROCS <numProcs>]
# [RUN_SERIAL]
# [LINKER_LANGUAGE (C|CXX|Fortran)]
# [STANDARD_PASS_OUTPUT
# | PASS_REGULAR_EXPRESSION "<regex0>;<regex1>;..."]
Expand Down Expand Up @@ -167,7 +168,7 @@ function(tribits_add_executable_and_test EXE_NAME)
#prefix
PARSE
#options
"STANDARD_PASS_OUTPUT;WILL_FAIL;ADD_DIR_TO_NAME;INSTALLABLE;NOEXEPREFIX;NOEXESUFFIX"
"RUN_SERIAL;STANDARD_PASS_OUTPUT;WILL_FAIL;ADD_DIR_TO_NAME;INSTALLABLE;NOEXEPREFIX;NOEXESUFFIX"
#one_value_keywords
"DISABLED"
#mulit_value_keywords
Expand Down Expand Up @@ -249,6 +250,7 @@ function(tribits_add_executable_and_test EXE_NAME)
tribits_fwd_parse_arg(CALL_ARGS FAIL_REGULAR_EXPRESSION)
tribits_fwd_parse_arg(CALL_ARGS ENVIRONMENT)
tribits_fwd_parse_arg(CALL_ARGS DISABLED)
tribits_fwd_parse_opt(CALL_ARGS RUN_SERIAL)
tribits_fwd_parse_opt(CALL_ARGS STANDARD_PASS_OUTPUT)
tribits_fwd_parse_opt(CALL_ARGS WILL_FAIL)
tribits_fwd_parse_arg(CALL_ARGS TIMEOUT)
Expand Down

0 comments on commit 3879de0

Please sign in to comment.