Skip to content

Commit

Permalink
Final cleanup in tests for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
ibabushkin committed Aug 10, 2017
1 parent 501e785 commit 60881e9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tests/examples.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ macro_rules! test {
eprintln!("path: {}", out_file.to_str().unwrap());
success &= Command::new("git")
.args(&["diff", "--quiet", out_file.to_str().unwrap()])
.args(&["diff", out_file.to_str().unwrap()])
.env("PAGER", "")
.status()
.expect("could not run git diff")
.success();
Expand Down
5 changes: 3 additions & 2 deletions tests/full.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ macro_rules! full_test {
eprintln!("path: {}", out_file);
success &= Command::new("git")
.args(&["diff", /*"--quiet",*/ out_file])
.args(&["diff", out_file])
.env("PAGER", "")
.status()
.expect("could not run git diff")
.success();
Expand All @@ -88,6 +89,6 @@ macro_rules! full_test {
}

full_test!(log, "log", "0.3.4", "0.3.8");
full_test!(rand, "rand", "0.3.10", "0.3.16");
// full_test!(rand, "rand", "0.3.10", "0.3.16");
// full_test!(serde_pre, "serde", "0.7.0", "1.0.0");
// full_test!(serde_post, "serde", "1.0.0", "1.0.8");

0 comments on commit 60881e9

Please sign in to comment.