Restore test files accidentally deleted in r354839I think there must be a bug in git-llvm causing parent directories to bedeleted when the diff deletes files in a subdirectory. Perhaps it isWindo
Restore test files accidentally deleted in r354839I think there must be a bug in git-llvm causing parent directories to bedeleted when the diff deletes files in a subdirectory. Perhaps it isWindows-only.There has been a behavior change, so some of these tests now fail. Ihave marked them XFAIL and will fix them in a follow-up to separate thechanges.llvm-svn: 360699
show more ...
Revert r354832 "[ASTImporter] Add support for importing ChooseExpr AST nodes."Test does not pass on Windowsllvm-svn: 354839
[ASTImporter] Fix for importing unnamed structsPatch by Peter Szecsi!Differential Revision: https://reviews.llvm.org/D30876llvm-svn: 329301
Revert r299355 "[ASTImporter] Fix for importing unnamed structs"It breaks windows bots. llvm-svn: 299386
[ASTImporter] Fix for importing unnamed structsPatch by Peter Szecsi!Differential Revision: https://reviews.llvm.org/D30876llvm-svn: 299355
[ASTImporter] Lookup SearchName instead of NameWhen the SearchName is already calculated we should use that for the lookup.Patch by Peter Szecsi!Differential Revision: https://reviews.llvm.org/
[ASTImporter] Lookup SearchName instead of NameWhen the SearchName is already calculated we should use that for the lookup.Patch by Peter Szecsi!Differential Revision: https://reviews.llvm.org/D30877llvm-svn: 299354
Fixed layout of test/ASTMerge.As outlined in a previous RFC, the test/ASTMerge/Inputs folder is getting full and the tests are starting to become interdependent. This is undesirable because- it m
Fixed layout of test/ASTMerge.As outlined in a previous RFC, the test/ASTMerge/Inputs folder is getting full and the tests are starting to become interdependent. This is undesirable because- it makes it harder to write new tests- it makes it harder to figure out at a glance what old tests are doing, and- it adds the risk of breaking one test while changing a different one, because of the interdependencies.To fix this, according to the conversation in the RFC, I have changed the layout froma.cInputs/a1.cInputs/a2.ctoa/test.ca/Inputs/a1.ca/Inputs/a2.cfor all existing tests. I have also eliminated interdependencies by replicating the input files for each test that uses them.https://reviews.llvm.org/D26571llvm-svn: 287129