Skip to content

Commit

Permalink
Test 1MB
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Aug 4, 2020
1 parent 8b7d273 commit 105e055
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/testsuite/build.rs
Expand Up @@ -8976,11 +8976,11 @@ fn close_output() {
let mut buf = [0];
drop(socket.read_exact(&mut buf));
let use_stderr = std::env::var("__CARGO_REPRO_STDERR").is_ok();
for i in 0..10000 {
for i in 0..100000 {
if use_stderr {
eprintln!("{}", i);
eprintln!("0123456789{}", i);
} else {
println!("{}", i);
println!("0123456789{}", i);
}
}
TokenStream::new()
Expand Down

0 comments on commit 105e055

Please sign in to comment.