xref: /aosp_15_r20/external/llvm/test/tools/llvm-lit/chain.c (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker // This test should fail. lit used to interpret this as:
2*9880d681SAndroid Build Coastguard Worker //   (false && false) || true
3*9880d681SAndroid Build Coastguard Worker // instead of the intended
4*9880d681SAndroid Build Coastguard Worker //   false && (false || true
5*9880d681SAndroid Build Coastguard Worker //
6*9880d681SAndroid Build Coastguard Worker // RUN: false
7*9880d681SAndroid Build Coastguard Worker // RUN: false || true
8*9880d681SAndroid Build Coastguard Worker //
9*9880d681SAndroid Build Coastguard Worker // XFAIL: *
10