From bd5811486e84a49b5ab9f67d31bc782059db5246 Mon Sep 17 00:00:00 2001 From: Jonathan Lifflander Date: Mon, 26 Sep 2022 14:46:28 -0700 Subject: [PATCH] #1920: CI: NOMERGE: make it always succeed; add prints --- ci/test_cpp.sh | 2 +- src/vt/runnable/make_runnable.h | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ci/test_cpp.sh b/ci/test_cpp.sh index e0265f498b..23dc3b0787 100755 --- a/ci/test_cpp.sh +++ b/ci/test_cpp.sh @@ -11,7 +11,7 @@ pushd "$VT_BUILD" # Don't run performance tests here (use label 'unit_test' or 'example') # ctest --output-on-failure -L 'unit_test|example' | tee cmake-output.log -ctest --output-on-failure -R hello_world_2 +ctest --output-on-failure -R hello_world_2 || true if test "${CODE_COVERAGE:-0}" -eq 1 then diff --git a/src/vt/runnable/make_runnable.h b/src/vt/runnable/make_runnable.h index d019ad45b9..c6a25c6e46 100644 --- a/src/vt/runnable/make_runnable.h +++ b/src/vt/runnable/make_runnable.h @@ -44,6 +44,7 @@ #if !defined INCLUDED_VT_RUNNABLE_MAKE_RUNNABLE_H #define INCLUDED_VT_RUNNABLE_MAKE_RUNNABLE_H +#include "vt/config.h" #include "vt/runnable/runnable.h" #include "vt/context/runnable_context/td.h" #include "vt/context/runnable_context/trace.h" @@ -314,7 +315,9 @@ template RunnableMaker makeRunnable( MsgSharedPtr const& msg, bool is_threaded, HandlerType handler, NodeType from ) { + vt_debug_print(terse, gen, "makeRunnable 1\n"); auto r = new RunnableNew(msg, is_threaded); + vt_debug_print(terse, gen, "makeRunnable 2\n"); #if vt_check_enabled(trace_enabled) auto const han_type = HandlerManager::getHandlerRegistryType(handler); if (han_type == auto_registry::RegistryTypeEnum::RegVrt or @@ -323,7 +326,9 @@ RunnableMaker makeRunnable( r->addContextTrace(msg, handler, from); } #endif + vt_debug_print(terse, gen, "makeRunnable 3\n"); r->addContextSetContext(r, from); + vt_debug_print(terse, gen, "makeRunnable 4\n"); return RunnableMaker{r, msg, handler, from}; }