Skip to content

Commit

Permalink
Few changes more for macos.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Feb 15, 2023
1 parent 0f3a8c1 commit f45b5b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
buildtype: [debug, release]
buildtype: [debug] # TODO: [debug, release]

env:
LTTNG_UST_REGISTER_TIMEOUT: 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit f45b5b1

Please sign in to comment.