2011-07-06 18:28:07 -05:00
|
|
|
// Code that generates a test runner to run all the tests in a crate
|
|
|
|
|
|
|
|
import std::option;
|
2011-08-15 18:38:23 -05:00
|
|
|
import std::vec;
|
2011-07-06 16:29:50 -05:00
|
|
|
import syntax::ast;
|
|
|
|
import syntax::fold;
|
2011-07-12 17:39:18 -05:00
|
|
|
import syntax::print::pprust;
|
2011-07-08 23:45:50 -05:00
|
|
|
import front::attr;
|
2011-07-06 16:29:50 -05:00
|
|
|
|
|
|
|
export modify_for_testing;
|
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
type node_id_gen = @fn() -> ast::node_id;
|
2011-07-06 18:28:07 -05:00
|
|
|
|
2011-08-04 18:20:09 -05:00
|
|
|
type test = {path: [ast::ident], ignore: bool};
|
2011-07-14 13:29:54 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
type test_ctxt =
|
|
|
|
@{next_node_id: node_id_gen,
|
2011-08-04 18:20:09 -05:00
|
|
|
mutable path: [ast::ident],
|
|
|
|
mutable testfns: [test]};
|
2011-07-06 16:29:50 -05:00
|
|
|
|
|
|
|
// Traverse the crate, collecting all the test functions, eliding any
|
|
|
|
// existing main functions, and synthesizing a main test harness
|
2011-07-27 07:19:39 -05:00
|
|
|
fn modify_for_testing(crate: @ast::crate) -> @ast::crate {
|
2011-07-06 18:28:07 -05:00
|
|
|
|
|
|
|
// FIXME: This hackasaurus assumes that 200000 is a safe number to start
|
|
|
|
// generating node_ids at (which is totally not the case). pauls is going
|
|
|
|
// to land a patch that puts parse_sess into session, which will give us
|
|
|
|
// access to the real next node_id.
|
2011-07-27 07:19:39 -05:00
|
|
|
let next_node_id = @mutable 200000;
|
|
|
|
let next_node_id_fn =
|
|
|
|
@bind fn (next_node_id: @mutable ast::node_id) -> ast::node_id {
|
|
|
|
let this_node_id = *next_node_id;
|
2011-08-12 17:01:13 -05:00
|
|
|
*next_node_id += 1;
|
2011-07-27 07:19:39 -05:00
|
|
|
ret this_node_id;
|
|
|
|
}(next_node_id);
|
|
|
|
|
|
|
|
let cx: test_ctxt =
|
|
|
|
@{next_node_id: next_node_id_fn,
|
2011-08-19 17:16:48 -05:00
|
|
|
mutable path: [],
|
|
|
|
mutable testfns: []};
|
2011-07-27 07:19:39 -05:00
|
|
|
|
|
|
|
let precursor =
|
|
|
|
{fold_crate: bind fold_crate(cx, _, _),
|
|
|
|
fold_item: bind fold_item(cx, _, _),
|
|
|
|
fold_mod: bind fold_mod(cx, _, _) with *fold::default_ast_fold()};
|
|
|
|
|
|
|
|
let fold = fold::make_fold(precursor);
|
|
|
|
let res = @fold.fold_crate(*crate);
|
2011-07-06 18:28:07 -05:00
|
|
|
// FIXME: This is necessary to break a circular reference
|
|
|
|
fold::dummy_out(fold);
|
|
|
|
ret res;
|
2011-07-06 16:29:50 -05:00
|
|
|
}
|
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
fn fold_mod(_cx: &test_ctxt, m: &ast::_mod, fld: fold::ast_fold) ->
|
|
|
|
ast::_mod {
|
2011-07-12 18:46:42 -05:00
|
|
|
|
|
|
|
// Remove any defined main function from the AST so it doesn't clash with
|
|
|
|
// the one we're going to add. FIXME: This is sloppy. Instead we should
|
|
|
|
// have some mechanism to indicate to the translation pass which function
|
|
|
|
// we want to be main.
|
2011-08-12 09:15:18 -05:00
|
|
|
fn nomain(item: &@ast::item) -> option::t<@ast::item> {
|
2011-07-27 07:19:39 -05:00
|
|
|
alt item.node {
|
2011-08-05 13:38:06 -05:00
|
|
|
ast::item_fn(f, _) {
|
2011-07-27 07:19:39 -05:00
|
|
|
if item.ident == "main" {
|
|
|
|
option::none
|
|
|
|
} else { option::some(item) }
|
|
|
|
}
|
|
|
|
_ { option::some(item) }
|
2011-07-12 18:46:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let mod_nomain =
|
2011-08-15 18:38:23 -05:00
|
|
|
{view_items: m.view_items, items: vec::filter_map(nomain, m.items)};
|
2011-07-12 18:46:42 -05:00
|
|
|
ret fold::noop_fold_mod(mod_nomain, fld);
|
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn fold_crate(cx: &test_ctxt, c: &ast::crate_, fld: fold::ast_fold) ->
|
|
|
|
ast::crate_ {
|
|
|
|
let folded = fold::noop_fold_crate(c, fld);
|
2011-07-06 18:28:07 -05:00
|
|
|
|
|
|
|
// Add a special __test module to the crate that will contain code
|
|
|
|
// generated for the test harness
|
2011-07-27 07:19:39 -05:00
|
|
|
ret {module: add_test_module(cx, folded.module) with folded};
|
2011-07-06 18:28:07 -05:00
|
|
|
}
|
|
|
|
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn fold_item(cx: &test_ctxt, i: &@ast::item, fld: fold::ast_fold) ->
|
|
|
|
@ast::item {
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
cx.path += [i.ident];
|
|
|
|
log #fmt["current path: %s", ast::path_name_i(cx.path)];
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
if is_test_fn(i) {
|
2011-07-09 20:36:19 -05:00
|
|
|
log "this is a test function";
|
2011-07-27 07:19:39 -05:00
|
|
|
let test = {path: cx.path, ignore: is_ignored(i)};
|
2011-08-19 17:16:48 -05:00
|
|
|
cx.testfns += [test];
|
|
|
|
log #fmt["have %u test functions", vec::len(cx.testfns)];
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let res = fold::noop_fold_item(i, fld);
|
2011-08-15 18:38:23 -05:00
|
|
|
vec::pop(cx.path);
|
2011-07-09 20:36:19 -05:00
|
|
|
ret res;
|
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn is_test_fn(i: &@ast::item) -> bool {
|
|
|
|
let has_test_attr =
|
2011-08-15 18:38:23 -05:00
|
|
|
vec::len(attr::find_attrs_by_name(i.attrs, "test")) > 0u;
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn has_test_signature(i: &@ast::item) -> bool {
|
|
|
|
alt i.node {
|
2011-08-05 13:38:06 -05:00
|
|
|
ast::item_fn(f, tps) {
|
2011-08-15 18:38:23 -05:00
|
|
|
let input_cnt = vec::len(f.decl.inputs);
|
2011-07-27 07:19:39 -05:00
|
|
|
let no_output = f.decl.output.node == ast::ty_nil;
|
2011-08-15 18:38:23 -05:00
|
|
|
let tparm_cnt = vec::len(tps);
|
2011-07-27 07:19:39 -05:00
|
|
|
input_cnt == 0u && no_output && tparm_cnt == 0u
|
|
|
|
}
|
|
|
|
_ { false }
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret has_test_attr && has_test_signature(i);
|
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn is_ignored(i: &@ast::item) -> bool {
|
2011-07-14 13:29:54 -05:00
|
|
|
attr::contains_name(attr::attr_metas(i.attrs), "ignore")
|
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn add_test_module(cx: &test_ctxt, m: &ast::_mod) -> ast::_mod {
|
|
|
|
let testmod = mk_test_module(cx);
|
2011-08-19 17:16:48 -05:00
|
|
|
ret {items: m.items + [testmod] with m};
|
2011-07-06 16:29:50 -05:00
|
|
|
}
|
|
|
|
|
2011-07-09 20:36:19 -05:00
|
|
|
/*
|
|
|
|
|
|
|
|
We're going to be building a module that looks more or less like:
|
|
|
|
|
|
|
|
mod __test {
|
|
|
|
|
2011-08-14 00:34:03 -05:00
|
|
|
fn main(args: [str]) -> int {
|
2011-07-09 20:36:19 -05:00
|
|
|
std::test::test_main(args, tests())
|
|
|
|
}
|
|
|
|
|
2011-08-04 18:20:09 -05:00
|
|
|
fn tests() -> [std::test::test_desc] {
|
2011-07-09 20:36:19 -05:00
|
|
|
... the list of tests in the crate ...
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn mk_test_module(cx: &test_ctxt) -> @ast::item {
|
2011-07-09 20:36:19 -05:00
|
|
|
// A function that generates a vector of test descriptors to feed to the
|
|
|
|
// test runner
|
2011-07-27 07:19:39 -05:00
|
|
|
let testsfn = mk_tests(cx);
|
2011-07-09 20:36:19 -05:00
|
|
|
// The synthesized main function which will call the console test runner
|
|
|
|
// with our list of tests
|
2011-07-27 07:19:39 -05:00
|
|
|
let mainfn = mk_main(cx);
|
2011-08-19 17:16:48 -05:00
|
|
|
let testmod: ast::_mod = {view_items: [], items: [mainfn, testsfn]};
|
2011-07-27 07:19:39 -05:00
|
|
|
let item_ = ast::item_mod(testmod);
|
|
|
|
let item: ast::item =
|
|
|
|
{ident: "__test",
|
2011-08-19 17:16:48 -05:00
|
|
|
attrs: [],
|
2011-07-27 07:19:39 -05:00
|
|
|
id: cx.next_node_id(),
|
|
|
|
node: item_,
|
2011-08-12 10:57:21 -05:00
|
|
|
span: ast::dummy_sp()};
|
2011-07-12 17:39:18 -05:00
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
log #fmt["Synthetic test module:\n%s\n", pprust::item_to_str(@item)];
|
2011-07-12 17:39:18 -05:00
|
|
|
|
2011-07-06 18:28:07 -05:00
|
|
|
ret @item;
|
|
|
|
}
|
|
|
|
|
2011-08-12 08:36:51 -05:00
|
|
|
fn nospan<T>(t: &T) -> ast::spanned<T> {
|
2011-08-12 10:57:21 -05:00
|
|
|
ret {node: t, span: ast::dummy_sp()};
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn mk_tests(cx: &test_ctxt) -> @ast::item {
|
2011-08-18 16:32:25 -05:00
|
|
|
let ret_ty = mk_test_desc_vec_ty(cx);
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let decl: ast::fn_decl =
|
2011-08-19 17:16:48 -05:00
|
|
|
{inputs: [],
|
2011-07-27 07:19:39 -05:00
|
|
|
output: ret_ty,
|
|
|
|
purity: ast::impure_fn,
|
2011-08-05 13:46:43 -05:00
|
|
|
il: ast::il_normal,
|
2011-07-27 07:19:39 -05:00
|
|
|
cf: ast::return,
|
2011-08-19 17:16:48 -05:00
|
|
|
constraints: []};
|
2011-07-27 07:19:39 -05:00
|
|
|
let proto = ast::proto_fn;
|
2011-07-13 17:44:09 -05:00
|
|
|
|
2011-07-09 20:36:19 -05:00
|
|
|
// The vector of test_descs for this crate
|
2011-07-27 07:19:39 -05:00
|
|
|
let test_descs = mk_test_desc_vec(cx);
|
|
|
|
|
|
|
|
let body_: ast::blk_ =
|
2011-08-19 17:16:48 -05:00
|
|
|
{stmts: [], expr: option::some(test_descs), id: cx.next_node_id()};
|
2011-07-27 07:19:39 -05:00
|
|
|
let body = nospan(body_);
|
|
|
|
|
|
|
|
let fn_ = {decl: decl, proto: proto, body: body};
|
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
let item_ = ast::item_fn(fn_, []);
|
2011-07-27 07:19:39 -05:00
|
|
|
let item: ast::item =
|
|
|
|
{ident: "tests",
|
2011-08-19 17:16:48 -05:00
|
|
|
attrs: [],
|
2011-07-27 07:19:39 -05:00
|
|
|
id: cx.next_node_id(),
|
|
|
|
node: item_,
|
2011-08-12 10:57:21 -05:00
|
|
|
span: ast::dummy_sp()};
|
2011-07-09 20:36:19 -05:00
|
|
|
ret @item;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn empty_fn_ty() -> ast::ty {
|
2011-07-27 07:19:39 -05:00
|
|
|
let proto = ast::proto_fn;
|
2011-08-19 17:16:48 -05:00
|
|
|
let input_ty = [];
|
2011-07-27 07:19:39 -05:00
|
|
|
let ret_ty = @nospan(ast::ty_nil);
|
|
|
|
let cf = ast::return;
|
2011-08-19 17:16:48 -05:00
|
|
|
let constrs = [];
|
2011-07-09 20:36:19 -05:00
|
|
|
ret nospan(ast::ty_fn(proto, input_ty, ret_ty, cf, constrs));
|
|
|
|
}
|
|
|
|
|
2011-08-04 18:20:09 -05:00
|
|
|
// The ast::ty of [std::test::test_desc]
|
2011-08-18 16:32:25 -05:00
|
|
|
fn mk_test_desc_vec_ty(cx: &test_ctxt) -> @ast::ty {
|
2011-07-27 07:19:39 -05:00
|
|
|
let test_desc_ty_path: ast::path =
|
|
|
|
nospan({global: false,
|
2011-08-19 17:16:48 -05:00
|
|
|
idents: ["std", "test", "test_desc"],
|
|
|
|
types: []});
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let test_desc_ty: ast::ty =
|
|
|
|
nospan(ast::ty_path(test_desc_ty_path, cx.next_node_id()));
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2011-08-18 16:32:25 -05:00
|
|
|
let vec_mt: ast::mt = {ty: @test_desc_ty, mut: ast::imm};
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2011-08-18 16:32:25 -05:00
|
|
|
ret @nospan(ast::ty_vec(vec_mt));
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn mk_test_desc_vec(cx: &test_ctxt) -> @ast::expr {
|
2011-08-19 17:16:48 -05:00
|
|
|
log #fmt["building test vector from %u tests", vec::len(cx.testfns)];
|
|
|
|
let descs = [];
|
2011-08-15 23:54:52 -05:00
|
|
|
for test: test in cx.testfns {
|
2011-07-27 07:19:39 -05:00
|
|
|
let test_ = test; // Satisfy alias analysis
|
2011-08-19 17:16:48 -05:00
|
|
|
descs += [mk_test_desc_rec(cx, test_)];
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
ret @{id: cx.next_node_id(),
|
2011-08-18 13:37:19 -05:00
|
|
|
node: ast::expr_vec(descs, ast::imm),
|
2011-08-12 10:57:21 -05:00
|
|
|
span: ast::dummy_sp()};
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn mk_test_desc_rec(cx: &test_ctxt, test: test) -> @ast::expr {
|
|
|
|
let path = test.path;
|
2011-07-14 13:29:54 -05:00
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
log #fmt["encoding %s", ast::path_name_i(path)];
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let name_lit: ast::lit =
|
|
|
|
nospan(ast::lit_str(ast::path_name_i(path), ast::sk_rc));
|
|
|
|
let name_expr: ast::expr =
|
|
|
|
{id: cx.next_node_id(),
|
|
|
|
node: ast::expr_lit(@name_lit),
|
2011-08-12 10:57:21 -05:00
|
|
|
span: ast::dummy_sp()};
|
2011-07-27 07:19:39 -05:00
|
|
|
|
|
|
|
let name_field: ast::field =
|
|
|
|
nospan({mut: ast::imm, ident: "name", expr: @name_expr});
|
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
let fn_path: ast::path = nospan({global: false, idents: path, types: []});
|
2011-07-27 07:19:39 -05:00
|
|
|
|
|
|
|
let fn_expr: ast::expr =
|
|
|
|
{id: cx.next_node_id(),
|
|
|
|
node: ast::expr_path(fn_path),
|
2011-08-12 10:57:21 -05:00
|
|
|
span: ast::dummy_sp()};
|
2011-07-27 07:19:39 -05:00
|
|
|
|
|
|
|
let fn_field: ast::field =
|
|
|
|
nospan({mut: ast::imm, ident: "fn", expr: @fn_expr});
|
|
|
|
|
|
|
|
let ignore_lit: ast::lit = nospan(ast::lit_bool(test.ignore));
|
|
|
|
|
|
|
|
let ignore_expr: ast::expr =
|
|
|
|
{id: cx.next_node_id(),
|
|
|
|
node: ast::expr_lit(@ignore_lit),
|
2011-08-12 10:57:21 -05:00
|
|
|
span: ast::dummy_sp()};
|
2011-07-27 07:19:39 -05:00
|
|
|
|
|
|
|
let ignore_field: ast::field =
|
|
|
|
nospan({mut: ast::imm, ident: "ignore", expr: @ignore_expr});
|
|
|
|
|
|
|
|
let desc_rec_: ast::expr_ =
|
2011-08-19 17:16:48 -05:00
|
|
|
ast::expr_rec([name_field, fn_field, ignore_field], option::none);
|
2011-07-27 07:19:39 -05:00
|
|
|
let desc_rec: ast::expr =
|
2011-08-12 10:57:21 -05:00
|
|
|
{id: cx.next_node_id(), node: desc_rec_, span: ast::dummy_sp()};
|
2011-07-09 20:36:19 -05:00
|
|
|
ret @desc_rec;
|
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn mk_main(cx: &test_ctxt) -> @ast::item {
|
2011-07-06 18:28:07 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let args_mt: ast::mt = {ty: @nospan(ast::ty_str), mut: ast::imm};
|
2011-08-18 16:11:06 -05:00
|
|
|
let args_ty: ast::ty = nospan(ast::ty_vec(args_mt));
|
2011-07-11 17:57:11 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let args_arg: ast::arg =
|
|
|
|
{mode: ast::val, ty: @args_ty, ident: "args", id: cx.next_node_id()};
|
2011-07-11 17:57:11 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let ret_ty = nospan(ast::ty_nil);
|
2011-07-11 17:57:11 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let decl: ast::fn_decl =
|
2011-08-19 17:16:48 -05:00
|
|
|
{inputs: [args_arg],
|
2011-07-27 07:19:39 -05:00
|
|
|
output: @ret_ty,
|
|
|
|
purity: ast::impure_fn,
|
2011-08-05 13:46:43 -05:00
|
|
|
il: ast::il_normal,
|
2011-07-27 07:19:39 -05:00
|
|
|
cf: ast::return,
|
2011-08-19 17:16:48 -05:00
|
|
|
constraints: []};
|
2011-07-27 07:19:39 -05:00
|
|
|
let proto = ast::proto_fn;
|
2011-07-06 18:28:07 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let test_main_call_expr = mk_test_main_call(cx);
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let body_: ast::blk_ =
|
2011-08-19 17:16:48 -05:00
|
|
|
{stmts: [],
|
2011-07-27 07:19:39 -05:00
|
|
|
expr: option::some(test_main_call_expr),
|
|
|
|
id: cx.next_node_id()};
|
2011-08-12 10:57:21 -05:00
|
|
|
let body = {node: body_, span: ast::dummy_sp()};
|
2011-07-06 18:28:07 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let fn_ = {decl: decl, proto: proto, body: body};
|
2011-07-06 18:28:07 -05:00
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
let item_ = ast::item_fn(fn_, []);
|
2011-07-27 07:19:39 -05:00
|
|
|
let item: ast::item =
|
|
|
|
{ident: "main",
|
2011-08-19 17:16:48 -05:00
|
|
|
attrs: [],
|
2011-07-27 07:19:39 -05:00
|
|
|
id: cx.next_node_id(),
|
|
|
|
node: item_,
|
2011-08-12 10:57:21 -05:00
|
|
|
span: ast::dummy_sp()};
|
2011-07-06 18:28:07 -05:00
|
|
|
ret @item;
|
2011-07-06 16:29:50 -05:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn mk_test_main_call(cx: &test_ctxt) -> @ast::expr {
|
2011-07-08 22:52:54 -05:00
|
|
|
|
2011-07-11 17:57:11 -05:00
|
|
|
// Get the args passed to main so we can pass the to test_main
|
2011-07-27 07:19:39 -05:00
|
|
|
let args_path: ast::path =
|
2011-08-19 17:16:48 -05:00
|
|
|
nospan({global: false, idents: ["args"], types: []});
|
2011-07-11 17:57:11 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let args_path_expr_: ast::expr_ = ast::expr_path(args_path);
|
2011-07-11 17:57:11 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let args_path_expr: ast::expr =
|
2011-08-19 17:16:48 -05:00
|
|
|
{id: cx.next_node_id(), node: args_path_expr_, span: ast::dummy_sp()};
|
2011-07-11 17:57:11 -05:00
|
|
|
|
|
|
|
// Call __test::test to generate the vector of test_descs
|
2011-07-27 07:19:39 -05:00
|
|
|
let test_path: ast::path =
|
2011-08-19 17:16:48 -05:00
|
|
|
nospan({global: false, idents: ["tests"], types: []});
|
2011-07-08 23:45:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let test_path_expr_: ast::expr_ = ast::expr_path(test_path);
|
2011-07-08 23:45:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let test_path_expr: ast::expr =
|
2011-08-19 17:16:48 -05:00
|
|
|
{id: cx.next_node_id(), node: test_path_expr_, span: ast::dummy_sp()};
|
2011-07-08 22:52:54 -05:00
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
let test_call_expr_: ast::expr_ = ast::expr_call(@test_path_expr, []);
|
2011-07-08 23:45:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let test_call_expr: ast::expr =
|
2011-08-19 17:16:48 -05:00
|
|
|
{id: cx.next_node_id(), node: test_call_expr_, span: ast::dummy_sp()};
|
2011-07-08 23:45:50 -05:00
|
|
|
|
2011-07-11 17:57:11 -05:00
|
|
|
// Call std::test::test_main
|
2011-07-27 07:19:39 -05:00
|
|
|
let test_main_path: ast::path =
|
|
|
|
nospan({global: false,
|
2011-08-19 17:16:48 -05:00
|
|
|
idents: ["std", "test", "test_main"],
|
|
|
|
types: []});
|
2011-07-27 07:19:39 -05:00
|
|
|
|
|
|
|
let test_main_path_expr_: ast::expr_ = ast::expr_path(test_main_path);
|
|
|
|
|
|
|
|
let test_main_path_expr: ast::expr =
|
|
|
|
{id: cx.next_node_id(),
|
|
|
|
node: test_main_path_expr_,
|
2011-08-12 10:57:21 -05:00
|
|
|
span: ast::dummy_sp()};
|
2011-07-27 07:19:39 -05:00
|
|
|
|
|
|
|
let test_main_call_expr_: ast::expr_ =
|
|
|
|
ast::expr_call(@test_main_path_expr,
|
2011-08-19 17:16:48 -05:00
|
|
|
[@args_path_expr, @test_call_expr]);
|
2011-07-27 07:19:39 -05:00
|
|
|
|
|
|
|
let test_main_call_expr: ast::expr =
|
|
|
|
{id: cx.next_node_id(),
|
|
|
|
node: test_main_call_expr_,
|
2011-08-12 10:57:21 -05:00
|
|
|
span: ast::dummy_sp()};
|
2011-07-09 20:36:19 -05:00
|
|
|
|
|
|
|
ret @test_main_call_expr;
|
2011-07-08 23:45:50 -05:00
|
|
|
}
|
|
|
|
|
2011-07-06 16:29:50 -05:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
|
|
|
// End:
|