You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation of shared_library() says the default prefix of shared library name is omitted on MSVC, cyg on Cygwin, and lib otherwise.
However, it seems the unit test (run_project_tests.py, line 199) assumes that the name of shared library is foo.dll or foo-X.dll on Windows, including MinGW and Cygwin.
I found this while working on the test case common/230 external project on Msys2 in #13916, but I'm not sure if fixing this will affect other working unit tests, so instead I patched the specific test case configuration as for now.
The text was updated successfully, but these errors were encountered:
The documentation of
shared_library()
says the default prefix of shared library name is omitted on MSVC,cyg
on Cygwin, andlib
otherwise.However, it seems the unit test (run_project_tests.py, line 199) assumes that the name of shared library is
foo.dll
orfoo-X.dll
on Windows, including MinGW and Cygwin.I found this while working on the test case common/230 external project on Msys2 in #13916, but I'm not sure if fixing this will affect other working unit tests, so instead I patched the specific test case configuration as for now.
The text was updated successfully, but these errors were encountered: