diff --git a/.github/workflows/macos-test.yml b/.github/workflows/macos-test.yml index ded1d6a9b..96ce72e86 100644 --- a/.github/workflows/macos-test.yml +++ b/.github/workflows/macos-test.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: - buildtype: [debug, release] + buildtype: [debug] # TODO: [debug, release] env: LTTNG_UST_REGISTER_TIMEOUT: 0 diff --git a/source/tests/metacall_dynlink_path_test/source/metacall_dynlink_path_test.cpp b/source/tests/metacall_dynlink_path_test/source/metacall_dynlink_path_test.cpp index 5be945bb2..267d8d53b 100644 --- a/source/tests/metacall_dynlink_path_test/source/metacall_dynlink_path_test.cpp +++ b/source/tests/metacall_dynlink_path_test/source/metacall_dynlink_path_test.cpp @@ -45,7 +45,10 @@ TEST_F(metacall_dynlink_path_test, DefaultConstructor) size_t length = 0; - EXPECT_EQ((int)0, (int)dynlink_library_path(name, path, &length)); + printf(METACALL_LIBRARY_PATH "\n"); + fflush(stdout); + + ASSERT_EQ((int)0, (int)dynlink_library_path(name, path, &length)); printf("%s == %s\n", path, METACALL_LIBRARY_PATH); fflush(stdout);