Skip to content

Commit

Permalink
Auto merge of #95355 - dtolnay:ripgreptest, r=Dylan-DPC
Browse files Browse the repository at this point in the history
Bump the ripgrep commit exercised by cargotest

This update goes from BurntSushi/ripgrep@3de31f7 (Aug 1, 2019) to current master, BurntSushi/ripgrep@ced5b92 (March 21, 2022).

I need this in order to pick up BurntSushi/ripgrep#1722, which picked up BurntSushi/bstr#58, which unblocks #95345. Ripgrep uses the Debug representation of a `BStr` in some of its tests. In old versions of bstr, that used to just use the standard library's `escape_debug()` implementation, so the output ends up being sensitive to whether the standard library renders character 0 as `\u{0}` or as `\0`. The newer bstr always renders character 0 as `\0` and ripgrep's test suite has been correspondingly updated.
  • Loading branch information
bors committed Mar 27, 2022
2 parents 223b58e + 1431c76 commit 100f12d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargotest/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const TEST_REPOS: &[Test] = &[
Test {
name: "ripgrep",
repo: "https://github.com/BurntSushi/ripgrep",
sha: "3de31f752729525d85a3d1575ac1978733b3f7e7",
sha: "ced5b92aa93eb47e892bd2fd26ab454008721730",
lock: None,
packages: &[],
features: None,
Expand Down

0 comments on commit 100f12d

Please sign in to comment.