diff options
| author | 2021-12-25 20:27:52 +0100 | |
|---|---|---|
| committer | 2022-07-25 21:59:28 +0200 | |
| commit | 705f7db84dd85555a6aef1e136cf251725cef293 (patch) | |
| tree | e110c6482a11d711d18515afce4fc50adcee76e7 /src/tests | |
| parent | network: Add initial files and enet dependency (diff) | |
| download | yuzu-705f7db84dd85555a6aef1e136cf251725cef293.tar.gz yuzu-705f7db84dd85555a6aef1e136cf251725cef293.tar.xz yuzu-705f7db84dd85555a6aef1e136cf251725cef293.zip | |
yuzu: Add ui files for multiplayer rooms
Diffstat (limited to 'src/tests')
| -rw-r--r-- | src/tests/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/tests/core/internal_network/network.cpp (renamed from src/tests/core/network/network.cpp) | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt index a69ccb264..fbbcf673a 100644 --- a/src/tests/CMakeLists.txt +++ b/src/tests/CMakeLists.txt | |||
| @@ -7,7 +7,7 @@ add_executable(tests | |||
| 7 | common/ring_buffer.cpp | 7 | common/ring_buffer.cpp |
| 8 | common/unique_function.cpp | 8 | common/unique_function.cpp |
| 9 | core/core_timing.cpp | 9 | core/core_timing.cpp |
| 10 | core/network/network.cpp | 10 | core/internal_network/network.cpp |
| 11 | tests.cpp | 11 | tests.cpp |
| 12 | video_core/buffer_base.cpp | 12 | video_core/buffer_base.cpp |
| 13 | input_common/calibration_configuration_job.cpp | 13 | input_common/calibration_configuration_job.cpp |
diff --git a/src/tests/core/network/network.cpp b/src/tests/core/internal_network/network.cpp index 1bbb8372f..164b0ff24 100644 --- a/src/tests/core/network/network.cpp +++ b/src/tests/core/internal_network/network.cpp | |||
| @@ -3,8 +3,8 @@ | |||
| 3 | 3 | ||
| 4 | #include <catch2/catch.hpp> | 4 | #include <catch2/catch.hpp> |
| 5 | 5 | ||
| 6 | #include "core/network/network.h" | 6 | #include "core/internal_network/network.h" |
| 7 | #include "core/network/sockets.h" | 7 | #include "core/internal_network/sockets.h" |
| 8 | 8 | ||
| 9 | TEST_CASE("Network::Errors", "[core]") { | 9 | TEST_CASE("Network::Errors", "[core]") { |
| 10 | Network::NetworkInstance network_instance; // initialize network | 10 | Network::NetworkInstance network_instance; // initialize network |