about summary refs log tree commit diff
path: root/src/comp/front/test.rs
AgeCommit message (Expand)AuthorLines
2011-09-12Factor imports mindlessly.Graydon Hoare-5/+2
2011-09-12Reformat for new mode syntax, step 1Marijn Haverbeke-18/+19
2011-09-12Make the names of the arg mode tag reflect their (revised) meaningMarijn Haverbeke-1/+2
2011-09-02Rename ty_istr to ty_str. Issue #855Brian Anderson-1/+1
2011-09-02Reformat. Issue #855Brian Anderson-33/+24
2011-09-01Remove lots of estr code from rustc. Issue #855Brian Anderson-1/+1
2011-09-01Convert all uses of #ifmt to #fmt. Issue #855Brian Anderson-5/+5
2011-09-01Rename std::istr to std::str. Issue #855Brian Anderson-1/+1
2011-09-01Convert std::test to istrs. Issue #855Brian Anderson-2/+2
2011-08-31Convert uses of #fmt to #ifmt. Issue #855Brian Anderson-8/+8
2011-08-27Convert rustc::syntax::ast_util to istrs. Issue #855Brian Anderson-4/+5
2011-08-27Convert pretty-printer to istrs. Issue #855Brian Anderson-1/+2
2011-08-27Convert rest of the AST to istrs. Issue #855Brian Anderson-1/+3
2011-08-27Convert ast::ident to istr. Issue #855Brian Anderson-14/+14
2011-08-25Support unchecked blocksTim Chevalier-7/+6
2011-08-23Add kind-checking for assign-op, copy, ret, be, fail exprs. Fix caught kindin...Graydon Hoare-1/+1
2011-08-22Move functions from syntax::ast to syntax::ast_utilBrian Anderson-18/+20
2011-08-20ReformatBrian Anderson-49/+42
2011-08-18Rename various things from ivec to vecBrian Anderson-4/+4
2011-08-18Change ast::ty_ivec, ty::ty_ivec to ty_vecBrian Anderson-2/+2
2011-08-18Remove seq_kind from ast::expr_vecBrian Anderson-1/+1
2011-08-18Remove or _-prefix all unused function argumentsMarijn Haverbeke-1/+2
2011-08-17Purge vecs from the std::test interfaceBrian Anderson-1/+1
2011-08-16Port the compiler to foo<T> decl syntax.Erick Tryzelaar-1/+1
2011-08-16Port the compiler to the typaram foo<T> syntax.Erick Tryzelaar-2/+2
2011-08-16Rename std::ivec to std::vecBrian Anderson-8/+8
2011-08-16Add and use an ivec interface to std::testBrian Anderson-3/+3
2011-08-15The wonky for...in... whitespace was bothering me. Sorry!Lindsey Kuper-1/+1
2011-08-15Make spans into stacks (to store expansion backtraces).Paul Stansifer-15/+15
2011-08-12Don't rely on binop autoderef in the compiler.Michael Sullivan-1/+1
2011-08-09Port the compiler to the ivec type [T] syntax.Erick Tryzelaar-5/+5
2011-08-05rustc: Add inlineness to the fn decl insteadPatrick Walton-0/+2
2011-08-05Revert "rustc: Introduce the concept of inline to the AST"Patrick Walton-4/+4
2011-08-05rustc: Introduce the concept of inline to the ASTPatrick Walton-4/+4
2011-07-27Reformat for new syntaxMarijn Haverbeke-235/+224
2011-07-25Rename the block type to be blk also. Sorry.Michael Sullivan-2/+2
2011-07-14Add a facility for ignoring tests. Issue #428Brian Anderson-8/+31
2011-07-14The test runner's main returns unit, not int. Issue #428Brian Anderson-1/+1
2011-07-13Prohibit trailing whitespace under 'tidy' script. Clean up all caught cases.Graydon Hoare-3/+3
2011-07-12Simplify the code for generating tests. Issue #428Brian Anderson-17/+10
2011-07-12Log the synthesized __test module. Issue #428Brian Anderson-4/+8
2011-07-12Elide existing main function when building a test runner. Issue #428Brian Anderson-1/+24
2011-07-11Pass command-line args to the test runner. Issue #428Brian Anderson-5/+28
2011-07-11rustc: Implement explicit global scope resolution via leading "::"; add a tes...Patrick Walton-3/+6
2011-07-09Generate code to load a crate's tests into the std test runner. Issue #428Brian Anderson-37/+218
2011-07-09Collect functions that look like unit tests. Issue #428Brian Anderson-3/+31
2011-07-09Track the path as we fold over the AST looking for unit tests. Issue #428Brian Anderson-3/+17
2011-07-07rustc: Remove all exterior vectors from the ASTPatrick Walton-4/+2
2011-07-07rustc: Change lots of AST nodes to use interior vectorsPatrick Walton-3/+3
2011-07-06Generate a main fn for test running. Issue #428Brian Anderson-17/+79