summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/Darwin/fclose.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/asan/TestCases/Darwin/fclose.c')
-rw-r--r--test/asan/TestCases/Darwin/fclose.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/asan/TestCases/Darwin/fclose.c b/test/asan/TestCases/Darwin/fclose.c
new file mode 100644
index 000000000..7807122bd
--- /dev/null
+++ b/test/asan/TestCases/Darwin/fclose.c
@@ -0,0 +1,13 @@
+// RUN: %clang_asan %s -o %t
+// RUN: %run %t 2>&1 | FileCheck %s
+
+#include <stdio.h>
+#include <stdlib.h>
+
+int main(int argc, const char * argv[]) {
+ fclose(NULL);
+ fprintf(stderr, "Finished.\n");
+ return 0;
+}
+
+// CHECK: Finished.