summaryrefslogtreecommitdiff
path: root/Source/UnitTests/Core
diff options
context:
space:
mode:
authorxperia64 <xperiancedapps@gmail.com>2022-06-19 05:22:12 -0400
committerTillmann Karras <tilkax@gmail.com>2025-04-25 00:51:45 +0100
commitc7d8afc5a7b5fc312791eb751f36233f12a242db (patch)
tree53c14ada1edee796f1b7f4526830141e44a211fe /Source/UnitTests/Core
parentc9bb258e88aa288f1bfbdb313f53afe36792a61b (diff)
Use correct exceptions for d3 reads/writes
Diffstat (limited to 'Source/UnitTests/Core')
-rw-r--r--Source/UnitTests/Core/DSP/DSPAcceleratorTest.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/UnitTests/Core/DSP/DSPAcceleratorTest.cpp b/Source/UnitTests/Core/DSP/DSPAcceleratorTest.cpp
index a78a09f5ad..77963d7df0 100644
--- a/Source/UnitTests/Core/DSP/DSPAcceleratorTest.cpp
+++ b/Source/UnitTests/Core/DSP/DSPAcceleratorTest.cpp
@@ -23,7 +23,9 @@ public:
bool EndExceptionRaised() const { return m_accov_raised; }
protected:
- void OnEndException() override
+ void OnRawReadEndException() override {}
+ void OnRawWriteEndException() override {}
+ void OnSampleReadEndException() override
{
EXPECT_TRUE(m_reads_stopped);
m_accov_raised = true;