From 7d0ca894a4a3d3a9cf2aba171db84ccef2740b1a Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 28 Feb 2016 09:37:01 +0100 Subject: [PATCH] test/test_pcm_export: extend the DSD_U32 test --- test/test_pcm_export.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test_pcm_export.cxx b/test/test_pcm_export.cxx index fca580774..51b5709ad 100644 --- a/test/test_pcm_export.cxx +++ b/test/test_pcm_export.cxx @@ -123,11 +123,15 @@ PcmExportTest::TestDsdU32() static constexpr uint8_t src[] = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, + 0x11, 0x22, 0x33, 0x44, + 0x55, 0x66, 0x77, 0x88, }; static constexpr uint32_t expected[] = { 0xcd894501, 0xefab6723, + 0x77553311, + 0x88664422, }; PcmExport::Params params;