[libc] Switch to using the generic `<gpuintrin.h>` implementations (#121810)
[llvm-project.git] / compiler-rt / test / fuzzer / features_dir.test
blobce63b3920708cc5158fa397e346078687f81fddc
1 # Tests -features_dir=F
2 # REQUIRES: linux, shell
3 RUN: %cpp_compiler %S/SimpleTest.cpp -o %t-SimpleTest
4 RUN: rm -rf %t-C %t-F
5 RUN: mkdir %t-C %t-F
6 RUN: not %run %t-SimpleTest %t-C -features_dir=%t-F
7 RUN: for c in %t-C/*; do f=%t-F/$(basename $c); echo looking for $f; [ -a $f ]; done