Skip to content

Commit

Permalink
auto merge of #13200 : sfackler/rust/test-attr, r=cmr
Browse files Browse the repository at this point in the history
  • Loading branch information
bors committed Mar 29, 2014
2 parents a708594 + 9ed33c0 commit 86890b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/librustc/front/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ fn add_test_module(cx: &TestCtxt, m: &ast::Mod) -> ast::Mod {
We're going to be building a module that looks more or less like:
mod __test {
#[!resolve_unexported]
#![!resolve_unexported]
extern crate test (name = "test", vers = "...");
fn main() {
test::test_main_static(::os::args(), tests)
Expand Down Expand Up @@ -326,8 +326,8 @@ fn mk_test_module(cx: &TestCtxt) -> @ast::Item {
// with our list of tests
let mainfn = (quote_item!(&cx.ext_cx,
pub fn main() {
#[allow(deprecated_owned_vector)];
#[main];
#![main]
#![allow(deprecated_owned_vector)]
test::test_main_static(::std::os::args(), TESTS);
}
)).unwrap();
Expand Down

0 comments on commit 86890b9

Please sign in to comment.