|
|
| Bugzilla Link |
10867 |
| Resolution |
FIXED |
| Resolved on |
Dec 05, 2012 16:54 |
| Version |
trunk |
| OS |
Linux |
Extended Description
This test fails:
RUN: false
RUN: true
This test passes:
RUN: false
RUN: true || true
This is because lit combines multiple RUN: lines together with " && " and passes them to the shell, where && binds tighter than ||.