bolt/deps/llvm-18.1.8/compiler-rt/test/asan/TestCases/Posix/freopen.cpp
2025-02-14 19:21:04 +01:00

15 lines
301 B
C++

// RUN: %clangxx_asan -O0 %s -o %t && %run %t
// This fails on i386 Linux due to a glibc versioned symbols mixup.
// REQUIRES: asan-64-bits
#include <assert.h>
#include <stdio.h>
int main() {
FILE *fp = fopen("/dev/null", "w");
assert(fp);
freopen(NULL, "a", fp);
fclose(fp);
return 0;
}