Skip to content

Commit

Permalink
fix filename on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
jingkaimori committed Apr 14, 2024
1 parent 8220f8d commit ca6f500
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/lolly/system/shared_lib_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ TEST_CASE ("check_output") {
if (os_win ()) {
lib_path= url_pwd () * "example_dynamic_library.dll";
}
else if (os_macos ()) {
lib_path= url_pwd () * "libexample_dynamic_library.dylib";
}
else {
lib_path= url_pwd () * "libexample_dynamic_library.so";
}
Expand Down

0 comments on commit ca6f500

Please sign in to comment.