-
- Downloads
PR10867: Work around a bug in lit. Multiple RUN: lines are joined with &&, so:
RUN: foo RUN: bar || true is equivalent to: RUN: foo && bar || true which is equivalent to: RUN: (foo && bar) || true This resulted in several of the fixit tests not really testing anything. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@139132 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- test/FixIt/fixit-cxx0x.cpp 1 addition, 1 deletiontest/FixIt/fixit-cxx0x.cpp
- test/FixIt/fixit-errors.c 1 addition, 1 deletiontest/FixIt/fixit-errors.c
- test/FixIt/fixit-function-call.cpp 1 addition, 1 deletiontest/FixIt/fixit-function-call.cpp
- test/FixIt/fixit-missing-method-return-type.m 2 additions, 2 deletionstest/FixIt/fixit-missing-method-return-type.m
- test/FixIt/fixit-objc-message.m 2 additions, 2 deletionstest/FixIt/fixit-objc-message.m
- test/FixIt/fixit-static-object-decl.m 2 additions, 2 deletionstest/FixIt/fixit-static-object-decl.m
- test/FixIt/fixit.c 1 addition, 1 deletiontest/FixIt/fixit.c
- test/FixIt/fixit.cpp 1 addition, 1 deletiontest/FixIt/fixit.cpp
- test/Sema/format-strings-fixit.c 1 addition, 1 deletiontest/Sema/format-strings-fixit.c
Loading
Please register or sign in to comment