acdha / benchmark-harness

Experimental simple framework for writing benchmark suites
http://benchmark-harness.readthedocs.org/
8 stars 1 forks source link

Fails on IronPython #2

Open regebro opened 11 years ago

regebro commented 11 years ago

The clever attempt of trying to figure out if you are outputting to a console or not unfortunately fails on IronPython, where stdout.isatty() always returns True. This is a known non-feature in .NET apparently.

acdha commented 11 years ago

Hmmm, I guess it's probably time to be less clever and rewrite it to require a command-line option instead. Thanks for the note