mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 00:03:43 +00:00
Merge #14
14: Normalize test newlines r=matklad a=CAD97 Tests pass with CRLF newlines now
This commit is contained in:
commit
6d3caf58ca
@ -6,6 +6,21 @@ use std::fs::read_dir;
|
||||
|
||||
use difference::Changeset;
|
||||
|
||||
/// Read file and normalize newlines.
|
||||
///
|
||||
/// `rustc` seems to always normalize `\r\n` newlines to `\n`:
|
||||
///
|
||||
/// ```
|
||||
/// let s = "
|
||||
/// ";
|
||||
/// assert_eq!(s.as_bytes(), &[10]);
|
||||
/// ```
|
||||
///
|
||||
/// so this should always be correct.
|
||||
fn read_text(path: &Path) -> String {
|
||||
file::get_text(path).unwrap().replace("\r\n", "\n")
|
||||
}
|
||||
|
||||
pub fn dir_tests<F>(
|
||||
paths: &[&str],
|
||||
f: F
|
||||
@ -15,7 +30,7 @@ where
|
||||
{
|
||||
for path in collect_tests(paths) {
|
||||
let actual = {
|
||||
let text = file::get_text(&path).unwrap();
|
||||
let text = read_text(&path);
|
||||
f(&text)
|
||||
};
|
||||
let path = path.with_extension("txt");
|
||||
@ -25,7 +40,7 @@ where
|
||||
file::put_text(&path, actual).unwrap();
|
||||
panic!("No expected result")
|
||||
}
|
||||
let expected = file::get_text(&path).unwrap();
|
||||
let expected = read_text(&path);
|
||||
let expected = expected.as_str();
|
||||
let actual = actual.as_str();
|
||||
assert_equal_text(expected, actual, &path);
|
||||
|
Loading…
Reference in New Issue
Block a user