Skip to content

Commit

Permalink
Fix test exclusion logic typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbianco committed Dec 20, 2023
1 parent 54e1bcc commit 16f1870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/OpenSimMacros.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ function(OpenSimAddTests)
list(APPEND test_args "~[win]~[mac]")
endif()
if(WIN32)
list(APPEND test_args "~[ma~[linux]")
list(APPEND test_args "~[mac]~[linux]")
endif()
add_test(NAME ${TEST_NAME} COMMAND ${TEST_NAME} ${test_args})
set_target_properties(${TEST_NAME} PROPERTIES
Expand Down

0 comments on commit 16f1870

Please sign in to comment.