Skip to content

Commit

Permalink
#2260: Enable verbose logging for all unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thearusable committed Apr 22, 2024
1 parent 80eef2d commit d154e6f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/unit/test_parallel_harness.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,13 @@ struct TestParallelHarnessAny : TestHarnessAny<TestBase> {
addArgs(traceon);
#endif

#if vt_feature_cmake_debug_verbose and !vt_feature_cmake_ci_build
static char verbose_on[]{"--vt_debug_level=verbose"};
static char debug_all[]{"--vt_debug_all"};
static char verbose_flush[]{"--vt_debug_print_flush"};
addArgs(verbose_on, debug_all, verbose_flush);
#endif

static char throw_on_abort[]{"--vt_throw_on_abort=1"};
addArgs(throw_on_abort);

Expand Down

0 comments on commit d154e6f

Please sign in to comment.