diff options
author | bunnei <bunneidev@gmail.com> | 2017-09-30 20:15:09 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2017-09-30 20:33:58 +0200 |
commit | 8c92435ded5c9c89290604a03e307c038b4d4117 (patch) | |
tree | 89640df0ae25ef5c78b79c1d8169f5ad6c25d63b /src/tests | |
parent | process: Support loading multiple codesets. (diff) | |
download | yuzu-8c92435ded5c9c89290604a03e307c038b4d4117.tar yuzu-8c92435ded5c9c89290604a03e307c038b4d4117.tar.gz yuzu-8c92435ded5c9c89290604a03e307c038b4d4117.tar.bz2 yuzu-8c92435ded5c9c89290604a03e307c038b4d4117.tar.lz yuzu-8c92435ded5c9c89290604a03e307c038b4d4117.tar.xz yuzu-8c92435ded5c9c89290604a03e307c038b4d4117.tar.zst yuzu-8c92435ded5c9c89290604a03e307c038b4d4117.zip |
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/core/hle/kernel/hle_ipc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/core/hle/kernel/hle_ipc.cpp b/src/tests/core/hle/kernel/hle_ipc.cpp index 52336d027..4143a3ab8 100644 --- a/src/tests/core/hle/kernel/hle_ipc.cpp +++ b/src/tests/core/hle/kernel/hle_ipc.cpp @@ -22,7 +22,7 @@ TEST_CASE("HLERequestContext::PopulateFromIncomingCommandBuffer", "[core][kernel auto session = std::get<SharedPtr<ServerSession>>(ServerSession::CreateSessionPair()); HLERequestContext context(std::move(session)); - auto process = Process::Create(CodeSet::Create("", 0)); + auto process = Process::Create(""); HandleTable handle_table; SECTION("works with empty cmdbuf") { @@ -142,7 +142,7 @@ TEST_CASE("HLERequestContext::WriteToOutgoingCommandBuffer", "[core][kernel]") { auto session = std::get<SharedPtr<ServerSession>>(ServerSession::CreateSessionPair()); HLERequestContext context(std::move(session)); - auto process = Process::Create(CodeSet::Create("", 0)); + auto process = Process::Create(""); HandleTable handle_table; auto* input = context.CommandBuffer(); u32_le output[IPC::COMMAND_BUFFER_LENGTH]; |