-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add grayskull tests for harvesting - Implement API for full coordinate translation to any system - Separate soc desc tests per arch
- Loading branch information
1 parent
36c3600
commit 950feee
Showing
13 changed files
with
613 additions
and
340 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,18 @@ | ||
set(API_TESTS_SRCS | ||
test_cluster.cpp | ||
test_cluster_descriptor.cpp | ||
test_soc_descriptor.cpp | ||
test_soc_descriptor_gs.cpp | ||
test_soc_descriptor_wh.cpp | ||
test_soc_descriptor_bh.cpp | ||
) | ||
|
||
add_executable(api_tests ${API_TESTS_SRCS}) | ||
target_link_libraries(api_tests PRIVATE test_common) | ||
set_target_properties(api_tests PROPERTIES | ||
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/test/umd/api | ||
OUTPUT_NAME api_tests | ||
set_target_properties( | ||
api_tests | ||
PROPERTIES | ||
RUNTIME_OUTPUT_DIRECTORY | ||
${CMAKE_BINARY_DIR}/test/umd/api | ||
OUTPUT_NAME | ||
api_tests | ||
) |
Oops, something went wrong.