summaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2016-05-21 10:15:13 -0400
committerbunnei <bunneidev@gmail.com>2016-05-21 10:15:13 -0400
commit5edff287b6da2821424e94d0ec48a00db2f7d944 (patch)
tree8236ee8438948f3612bf9fd9f7932449fff1567b /src/tests
parent0c2fab440148dc01e04e9435e5ff8f7a4576e3c2 (diff)
parent87de1ca96810eace7c3609d5b6ab7bfc93976c44 (diff)
Merge pull request #1564 from MerryMage/this-is-only-a-test
tests: Infrastructure for unit tests
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/CMakeLists.txt16
-rw-r--r--src/tests/tests.cpp9
2 files changed, 25 insertions, 0 deletions
diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt
new file mode 100644
index 000000000..457c55571
--- /dev/null
+++ b/src/tests/CMakeLists.txt
@@ -0,0 +1,16 @@
+set(SRCS
+ tests.cpp
+ )
+
+set(HEADERS
+ )
+
+create_directory_groups(${SRCS} ${HEADERS})
+
+include_directories(../../externals/catch/single_include/)
+
+add_executable(tests ${SRCS} ${HEADERS})
+target_link_libraries(tests core video_core audio_core common)
+target_link_libraries(tests ${PLATFORM_LIBRARIES})
+
+add_test(NAME tests COMMAND $<TARGET_FILE:tests>)
diff --git a/src/tests/tests.cpp b/src/tests/tests.cpp
new file mode 100644
index 000000000..73978676f
--- /dev/null
+++ b/src/tests/tests.cpp
@@ -0,0 +1,9 @@
+// Copyright 2016 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#define CATCH_CONFIG_MAIN
+#include <catch.hpp>
+
+// Catch provides the main function since we've given it the
+// CATCH_CONFIG_MAIN preprocessor directive.