about summary refs log tree commit diff
path: root/src/test/stdtest/stdtest.rc
AgeCommit message (Collapse)AuthorLines
2011-07-14Add a facility for ignoring tests. Issue #428Brian Anderson-0/+1
Adding the #[ignore] attribute will cause the test not to be run, though it will still show up in the list of tests.
2011-07-09Add sha1 and int tests to stdtest. Issue #428Brian Anderson-0/+2
2011-07-06Add a stdtest crate to hold the standard library testsBrian Anderson-0/+10
This will link to std and compile with the --test flag. Eventually the run-pass/lib* tests will move here. We could also put the std tests directly into the library and compile both a library version and a test version, but I think this way will make for faster builds. Issue #428