Uh oh!
There was an error while loading. Please reload this page.
Use for instead of while in ascii.rs tests - #21862
Conversation
rust-highfive
commented
Feb 2, 2015
r? @brson (rust_highfive has picked a reviewer for you, use r? to override) |
brson
commented
Feb 9, 2015
@bors: r+ 00d1 thanks! I don't know off hand the significance of the numbers here. |
bors
commented
Feb 9, 2015
⌛ Testing commit 00d1873 with merge 5368ab1... |
bors
commented
Feb 9, 2015
💔 Test failed - auto-win-64-nopt-t |
iKevinY
commented
Feb 9, 2015
Gah. :( Though since this hasn't been merged in yet, I'm still curious about the |
alexcrichton
commented
Feb 9, 2015
@bors: retry |
bors
commented
Feb 9, 2015
⌛ Testing commit 00d1873 with merge 4668f51... |
bors
commented
Feb 9, 2015
💔 Test failed - auto-mac-64-opt |
alexcrichton
commented
Feb 9, 2015
@bors: retry |
I also noticed that all of the tests iterate through values up to 500. Just out of curiosity, was the choice of 500 arbitrary? I was thinking that it might make more sense to iterate up to 127 due to ASCII's character range (or if non-ASCII characters are being tested intentionally, either 255 or 511 for a nice `2^n - 1` value).
bors
commented
Feb 9, 2015
⌛ Testing commit 00d1873 with merge d57a571... |
bors
commented
Feb 9, 2015
💔 Test failed - auto-win-64-nopt-t |
iKevinY
commented
Feb 9, 2015
Are the build fails related to the changes I made in my PR? There seems to be an awful lot of fails. :/ |
alexcrichton
commented
Feb 9, 2015
@bors: retry Our automation is a ... little flaky sometimes :) |
iKevinY
commented
Feb 10, 2015
@alexcrichton Ah, I see; just wanted to make sure that I didn't break anything! Is a specific cause for the automation failure known? (Could the build infrastructure be improved or are there no practical fixes?) |
bors
commented
Feb 10, 2015
⌛ Testing commit 00d1873 with merge ec280bc... |
bors
commented
Feb 10, 2015
💔 Test failed - auto-win-64-nopt-t |
alexcrichton
commented
Feb 10, 2015
@bors: retry rollup |
I also noticed that all of the tests iterate through values up to 500. Just out of curiosity, was the choice of 500 arbitrary? I was thinking that it might make more sense to iterate up to 127 due to ASCII's character range (or if non-ASCII characters are being tested intentionally, either 255 or 511 for a nice `2^n - 1` value).
fix: Don't trigger GC on slow tests, take 2
While working on this PR, I also noticed that all of the tests iterate through values up to 500. Just out of curiosity, was the choice of 500 arbitrary? I was thinking that it might make more sense to iterate up to 127 due to ASCII's character range (or if non-ASCII characters are being tested intentionally, either 255 or 511 for a nice
2^n - 1value).