summaryrefslogtreecommitdiff
path: root/src/testdir/test_sound.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-06-17 22:19:33 +0200
committerBram Moolenaar <Bram@vim.org>2019-06-17 22:19:33 +0200
commit9b283523f2f75b45feef902b8713808e883d9c19 (patch)
tree83a7c31221221362b997e6938381d4de61db52d3 /src/testdir/test_sound.vim
parent394c5d8870b15150fc91a4c058dc571fd5eaa97e (diff)
downloadvim-git-9b283523f2f75b45feef902b8713808e883d9c19.tar.gz
patch 8.1.1565: MS-Windows: no sound supportv8.1.1565
Problem: MS-Windows: no sound support. Solution: Add sound support for MS-Windows. (Yasuhiro Matsumoto, Ken Takata, closes #4522)
Diffstat (limited to 'src/testdir/test_sound.vim')
-rw-r--r--src/testdir/test_sound.vim4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/testdir/test_sound.vim b/src/testdir/test_sound.vim
index 1e2c455e6..e74aa132d 100644
--- a/src/testdir/test_sound.vim
+++ b/src/testdir/test_sound.vim
@@ -10,6 +10,10 @@ func PlayCallback(id, result)
endfunc
func Test_play_event()
+ if has('win32')
+ throw 'Skipped: Playing event with callback is not supported on Windows'
+ endif
+
let id = sound_playevent('bell', 'PlayCallback')
if id == 0
throw 'Skipped: bell event not available'