| /llvm-project-15.0.7/libc/test/src/unistd/ |
| H A D | read_write_test.cpp | 46 using __llvm_libc::testing::ErrnoSetterMatcher::Fails; in TEST() 48 EXPECT_THAT(__llvm_libc::write(-1, "", 1), Fails(EBADF)); in TEST() 50 Fails(EFAULT)); in TEST() 54 using __llvm_libc::testing::ErrnoSetterMatcher::Fails; in TEST() 56 EXPECT_THAT(__llvm_libc::read(-1, nullptr, 1), Fails(EBADF)); in TEST() 58 Fails(EFAULT)); in TEST()
|
| H A D | rmdir_test.cpp | 26 using __llvm_libc::testing::ErrnoSetterMatcher::Fails; in TEST() 27 ASSERT_THAT(__llvm_libc::rmdir("testdata/non-existent-dir"), Fails(ENOENT)); in TEST()
|
| H A D | unlink_test.cpp | 29 using __llvm_libc::testing::ErrnoSetterMatcher::Fails; in TEST() 30 ASSERT_THAT(__llvm_libc::unlink("testdata/non-existent-file"), Fails(ENOENT)); in TEST()
|
| H A D | unlinkat_test.cpp | 40 using __llvm_libc::testing::ErrnoSetterMatcher::Fails; in TEST() 43 Fails(ENOENT)); in TEST()
|
| H A D | lseek_test.cpp | 53 using __llvm_libc::testing::ErrnoSetterMatcher::Fails; in TEST() 59 EXPECT_THAT(__llvm_libc::lseek(fd, -1, SEEK_CUR), Fails(EINVAL)); in TEST()
|
| /llvm-project-15.0.7/libc/test/src/signal/ |
| H A D | sigaddset_test.cpp | 18 using __llvm_libc::testing::ErrnoSetterMatcher::Fails; in TEST() 20 EXPECT_THAT(__llvm_libc::sigaddset(nullptr, SIGSEGV), Fails(EINVAL)); in TEST() 23 EXPECT_THAT(__llvm_libc::sigaddset(&sigset, -1), Fails(EINVAL)); in TEST() 30 Fails(EINVAL)); in TEST() 31 EXPECT_THAT(__llvm_libc::sigaddset(&sigset, 0), Fails(EINVAL)); in TEST()
|
| H A D | sigprocmask_test.cpp | 31 using __llvm_libc::testing::ErrnoSetterMatcher::Fails; 40 EXPECT_THAT(__llvm_libc::sigprocmask(17, &valid, nullptr), Fails(EINVAL)); in TEST_F() 41 EXPECT_THAT(__llvm_libc::sigprocmask(-4, &valid, nullptr), Fails(EINVAL)); in TEST_F() 46 Fails(EFAULT)); in TEST_F() 47 EXPECT_THAT(__llvm_libc::sigprocmask(-4, nullptr, invalid), Fails(EFAULT)); in TEST_F()
|
| H A D | sigdelset_test.cpp | 20 using __llvm_libc::testing::ErrnoSetterMatcher::Fails; in TEST() 22 EXPECT_THAT(__llvm_libc::sigdelset(nullptr, SIGUSR1), Fails(EINVAL)); in TEST() 26 EXPECT_THAT(__llvm_libc::sigdelset(&set, -1), Fails(EINVAL)); in TEST()
|
| H A D | signal_test.cpp | 18 using __llvm_libc::testing::ErrnoSetterMatcher::Fails; 25 Fails(EINVAL, (void *)SIG_ERR)); in TEST() 27 Fails(EINVAL, (void *)SIG_ERR)); in TEST()
|
| H A D | sigaction_test.cpp | 18 using __llvm_libc::testing::ErrnoSetterMatcher::Fails; 23 EXPECT_THAT(__llvm_libc::sigaction(-1, nullptr, nullptr), Fails(EINVAL)); in TEST() 30 EXPECT_THAT(__llvm_libc::sigaction(SIGKILL, &action, nullptr), Fails(EINVAL)); in TEST()
|
| H A D | sigfillset_test.cpp | 19 using __llvm_libc::testing::ErrnoSetterMatcher::Fails; in TEST() 20 EXPECT_THAT(__llvm_libc::sigfillset(nullptr), Fails(EINVAL)); in TEST()
|
| /llvm-project-15.0.7/libc/test/src/sys/mman/linux/ |
| H A D | mmap_test.cpp | 17 using __llvm_libc::testing::ErrnoSetterMatcher::Fails; 40 EXPECT_THAT(addr, Fails(EINVAL, MAP_FAILED)); in TEST() 42 EXPECT_THAT(__llvm_libc::munmap(0, 0), Fails(EINVAL)); in TEST()
|
| /llvm-project-15.0.7/libc/test/src/sys/stat/ |
| H A D | mkdirat_test.cpp | 26 using __llvm_libc::testing::ErrnoSetterMatcher::Fails; in TEST() 28 Fails(ENOENT)); in TEST()
|
| /llvm-project-15.0.7/libc/test/src/fcntl/ |
| H A D | openat_test.cpp | 41 using __llvm_libc::testing::ErrnoSetterMatcher::Fails; in TEST() 43 Fails(ENOENT)); in TEST()
|
| /llvm-project-15.0.7/llvm/unittests/ADT/ |
| H A D | DeltaAlgorithmTest.cpp | 77 std::set<unsigned> Fails = fixed_set(3, 3, 5, 7); in TEST() local 78 FixedDeltaAlgorithm FDA(Fails); in TEST()
|
| /llvm-project-15.0.7/flang/include/flang/Parser/ |
| H A D | instrumented-parser.h | 31 bool Fails(const char *at, const MessageFixedText &tag, ParseState &); 60 if (log->Fails(at, tag_, state)) { in Parse()
|
| /llvm-project-15.0.7/openmp/runtime/cmake/ |
| H A D | LibompMicroTests.cmake | 15 # - Fails if test-touch.c does not compile or if test-touch.c does not run after compilation 20 # - Fails if TEXTREL is in output of readelf -d libomp.so command 25 # - Fails if stack is executable. Should only be readable and writable. Not executable. 30 # - Fails if finds invalid instruction for Intel(R) MIC Architecture (wasn't compiled with correct… 35 # - Fails if sees a dependence not listed in td_exp variable below
|
| /llvm-project-15.0.7/libc/test/src/time/ |
| H A D | mktime_test.cpp | 20 using __llvm_libc::testing::ErrnoSetterMatcher::Fails; 36 EXPECT_THAT(__llvm_libc::mktime(&tm_data), Fails(EOVERFLOW)); in TEST()
|
| H A D | gmtime_test.cpp | 19 using __llvm_libc::testing::ErrnoSetterMatcher::Fails;
|
| /llvm-project-15.0.7/libc/test/ |
| H A D | ErrnoSetterMatcher.h | 63 static internal::ErrnoSetterMatcher<RetT> Fails(int ExpectedErrno,
|
| /llvm-project-15.0.7/flang/lib/Parser/ |
| H A D | instrumented-parser.cpp | 25 bool ParsingLog::Fails( in Fails() function in Fortran::parser::ParsingLog
|
| /llvm-project-15.0.7/lld/test/wasm/ |
| H A D | undefined.ll | 4 ; Fails due to undefined 'foo'
|
| /llvm-project-15.0.7/llvm/test/Transforms/SimplifyCFG/ |
| H A D | pr52290.ll | 6 ; FIXME: Fails due to infinite loop in iterativelySimplifyCFG.
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/GlobalISel/ |
| H A D | roundeven.ll | 55 ; FIXME: Fails on build_vector
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/SCF/TransformOps/ |
| H A D | SCFTransformOps.td | 25 Payload IR operation associated with the operand. Fails if such a loop
|