From f45b5b1f788bf4677faeb23107d4b9df1a018700 Mon Sep 17 00:00:00 2001 From: Vicente Eduardo Ferrer Garcia Date: Wed, 15 Feb 2023 23:10:12 +0100 Subject: [PATCH] Few changes more for macos. --- .github/workflows/macos-test.yml | 2 +- .../source/metacall_dynlink_path_test.cpp | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) 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);