mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Add the infrastructure required to easily add unit tests and test it with a very simple test file.
This commit is contained in:
11
Source/UnitTests/CMakeLists.txt
Normal file
11
Source/UnitTests/CMakeLists.txt
Normal file
@ -0,0 +1,11 @@
|
||||
add_custom_target(unittests)
|
||||
add_custom_command(TARGET unittests POST_BUILD COMMAND ${CMAKE_CTEST_COMMAND})
|
||||
|
||||
macro(add_dolphin_test target srcs libs)
|
||||
add_executable(Tests/${target} EXCLUDE_FROM_ALL ${srcs})
|
||||
target_link_libraries(Tests/${target} ${libs} ${GTEST_BOTH_LIBRARIES})
|
||||
add_dependencies(unittests Tests/${target})
|
||||
add_test(NAME ${target} COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Tests/${target})
|
||||
endmacro(add_dolphin_test)
|
||||
|
||||
add_subdirectory(Core)
|
1
Source/UnitTests/Core/CMakeLists.txt
Normal file
1
Source/UnitTests/Core/CMakeLists.txt
Normal file
@ -0,0 +1 @@
|
||||
add_dolphin_test(MMIOTest MMIOTest.cpp core)
|
24
Source/UnitTests/Core/MMIOTest.cpp
Normal file
24
Source/UnitTests/Core/MMIOTest.cpp
Normal file
@ -0,0 +1,24 @@
|
||||
#include <unordered_set>
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Core/HW/MMIO.h"
|
||||
|
||||
// Tests that the UniqueID function returns a "unique enough" identifier
|
||||
// number: that is, it is unique in the address ranges we care about.
|
||||
TEST(UniqueID, UniqueEnough)
|
||||
{
|
||||
std::unordered_set<u32> ids;
|
||||
for (u32 i = 0xCC000000; i < 0xCC010000; ++i)
|
||||
{
|
||||
u32 unique_id = MMIO::UniqueID(i);
|
||||
EXPECT_EQ(ids.end(), ids.find(unique_id));
|
||||
ids.insert(unique_id);
|
||||
}
|
||||
for (u32 i = 0xCD000000; i < 0xCD010000; ++i)
|
||||
{
|
||||
u32 unique_id = MMIO::UniqueID(i);
|
||||
EXPECT_EQ(ids.end(), ids.find(unique_id));
|
||||
ids.insert(unique_id);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user