Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Re-sort #include lines for unittests. This uses a slightly modified | Chandler Carruth | 2017-06-06 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | clang-format (https://reviews.llvm.org/D33932) to keep primary headers at the top and handle new utility headers like 'gmock' consistently with other utility headers. No other change was made. I did no manual edits, all of this is clang-format. This should allow other changes to have more clear and focused diffs, and is especially motivated by moving some headers into more focused libraries. llvm-svn: 304786 | ||||
* | Use EXPECT_EQ instead of ASSERT_EQ in a unit test. | Rui Ueyama | 2017-01-11 | 1 | -10/+10 |
| | | | | llvm-svn: 291713 | ||||
* | Fix memory leak in a unit test. | Rui Ueyama | 2017-01-10 | 1 | -1/+1 |
| | | | | llvm-svn: 291595 | ||||
* | TarWriter: Fix a bug in Ustar header. | Rui Ueyama | 2017-01-09 | 1 | -0/+88 |
If we split a filename into `Name` and `Prefix`, `Prefix` is at most 145 bytes. We had a bug that didn't split a path correctly. This bug was pointed out by Rafael in the post commit review. This patch adds a unit test for TarWriter to verify the fix. llvm-svn: 291494 |