| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-07-27 | tests: Move run-pass tests without naming conflicts to ui | Vadim Petrochenkov | -46/+0 | |
| 2019-07-27 | tests: Add missing run-pass annotations | Vadim Petrochenkov | -0/+2 | |
| 2019-05-16 | Fixed tidy errors | Dario Gonzalez | -4/+0 | |
| 2019-05-16 | Added ignore-sgx for appropriate tests | Dario Gonzalez | -0/+5 | |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 | |
| 2018-09-21 | Allow various lints as part of ui-ifying `src/test/run-pass` suite. | Felix S. Klock II | -0/+2 | |
| 2018-05-09 | use fmt::Result where applicable | Andre Bogus | -1/+1 | |
| 2018-01-02 | Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. | Ed Schouten | -0/+1 | |
| It looks like many of these tests are already disabled on emscripten, which also doesn't seem to support environment variables and subprocess spawning. Just add a similar tag for CloudABI. While there, sort some of the lists of operating systems alphabetically. | ||||
| 2016-02-11 | Ignore tests that use threads on emscripten | Pierre Krieger | -0/+2 | |
| 2015-11-08 | print the unexpected character | Tamir Duberstein | -1/+1 | |
| 2015-04-14 | Fallout: move from scoped to spawn | Aaron Turon | -1/+1 | |
| 2015-04-08 | Implement reentrant mutexes and make stdio use them | Simonas Kazlauskas | -0/+48 | |
| write_fmt calls write for each formatted field. The default implementation of write_fmt is used, which will call write on not-yet-locked stdout (and write locking after), therefore making print! in multithreaded environment still interleave contents of two separate prints. This patch implements reentrant mutexes, changes stdio handles to use these mutexes and overrides write_fmt to lock the stdio handle for the whole duration of the call. | ||||
