The missing linefeed was causing the test summary line to be garbled.
From: Francois Gouget fgouget@free.fr
The missing linefeed was causing the test summary line to be garbled. --- dlls/dmsynth/tests/dmsynth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/dmsynth/tests/dmsynth.c b/dlls/dmsynth/tests/dmsynth.c index 6d695991cac..dd96c87ef34 100644 --- a/dlls/dmsynth/tests/dmsynth.c +++ b/dlls/dmsynth/tests/dmsynth.c @@ -1168,7 +1168,7 @@ static void test_IDirectMusicSynthSink(void) ok(hr == S_OK || broken(hr == DSERR_NODRIVER), "got %#lx\n", hr); if (broken(hr == DSERR_NODRIVER)) { - win_skip("Failed to create IDirectSound, skipping tests"); + win_skip("Failed to create IDirectSound, skipping tests\n"); return; }
This merge request was approved by Michael Stefaniuc.