summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/msan/lit_tests/ioctl_sound.cc
diff options
context:
space:
mode:
Diffstat (limited to 'compiler-rt/lib/msan/lit_tests/ioctl_sound.cc')
-rw-r--r--compiler-rt/lib/msan/lit_tests/ioctl_sound.cc29
1 files changed, 0 insertions, 29 deletions
diff --git a/compiler-rt/lib/msan/lit_tests/ioctl_sound.cc b/compiler-rt/lib/msan/lit_tests/ioctl_sound.cc
deleted file mode 100644
index 0611e0dc434..00000000000
--- a/compiler-rt/lib/msan/lit_tests/ioctl_sound.cc
+++ /dev/null
@@ -1,29 +0,0 @@
-// RUN: %clangxx_msan -m64 -O0 -g %s -o %t && %t
-// RUN: %clangxx_msan -m64 -O3 -g %s -o %t && %t
-
-#include <assert.h>
-#include <fcntl.h>
-#include <sound/asound.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <sys/ioctl.h>
-#include <sys/socket.h>
-#include <unistd.h>
-
-#include <sanitizer/msan_interface.h>
-
-int main(int argc, char **argv) {
- int fd = open("/dev/snd/controlC0", O_RDONLY);
- if (fd < 0) {
- printf("Unable to open sound device.");
- return 0;
- }
- const unsigned sz = sizeof(snd_ctl_card_info);
- void *info = malloc(sz + 1);
- assert(__msan_test_shadow(info, sz) == 0);
- assert(ioctl(fd, SNDRV_CTL_IOCTL_CARD_INFO, info) >= 0);
- assert(__msan_test_shadow(info, sz + 1) == sz);
- close(fd);
- free(info);
- return 0;
-}
OpenPOWER on IntegriCloud