Revert "[TargetVersion] Only enable on RISC-V and AArch64" (#117110)
[llvm-project.git] / bolt / test / unreadable-profile.test
blobfe1ca93f3221e8043d6d5e0ac39677c45de58c1c
1 REQUIRES: system-linux
3 RUN: touch %t.profile && chmod 000 %t.profile
4 RUN: %clang %S/Inputs/hello.c -o %t
5 RUN: not llvm-bolt %t -o %t.bolt --data %t.profile 2>&1 \
6 RUN:   | FileCheck %s --check-prefix CHECK-NOPERM
7 RUN: not llvm-bolt %t -o %t.bolt --data %t.fake.profile 2>&1 \
8 RUN:   | FileCheck %s --check-prefix CHECK-FAKE
10 ## Check that llvm-bolt gracefully handles errors accessing profile data.
12 CHECK-NOPERM: Permission denied
13 CHECK-FAKE: No such file or directory