PR10867. lit would interpret
authorRichard Smith <richard-llvm@metafoo.co.uk>
Wed, 5 Dec 2012 22:54:26 +0000 (22:54 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Wed, 5 Dec 2012 22:54:26 +0000 (22:54 +0000)
commit00fb9c429e4400f3daeb87e6fad9498d4c73862a
tree1e5aa0caa7806c412f54dbbf4e156f102c091cfd
parentc4c14a7b4a14c30b4fc7b130eb003ea7e4449e41
PR10867. lit would interpret

  RUN: a
  RUN: b || true

as "a && (b || true)" in Tcl mode, and as "(a && b) || true" in sh mode.
Everyone seems to (quite reasonably) write tests assuming the Tcl behavior,
so use that in sh mode too.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169441 91177308-0d34-0410-b5e6-96231b3b80d8
test/tools/llvm-lit/chain.c [new file with mode: 0644]
utils/lit/lit/TestRunner.py