Skip to content

Commit

Permalink
use an incremental-fulldeps test instead of a run-make test
Browse files Browse the repository at this point in the history
  • Loading branch information
arielb1 committed Aug 26, 2018
1 parent 5415bb6 commit 025d014
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 18 deletions.
Expand Up @@ -8,6 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// no-prefer-dynamic

#![crate_type="proc-macro"]
#![allow(non_snake_case)]

Expand Down
Expand Up @@ -8,9 +8,9 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#![crate_type="rlib"]

#[macro_use]
extern crate macro_def;
extern crate issue_49482_macro_def;

pub use issue_49482_macro_def::*;

pub use macro_def::*;
pub fn foo() {}
Expand Up @@ -8,7 +8,12 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

extern crate reexport;
// aux-build:issue_49482_macro_def.rs
// aux-build:issue_49482_reexport.rs
// ignore-stage1
// revisions: rpass1

extern crate issue_49482_reexport;

pub trait KvStorage
{
Expand All @@ -29,5 +34,8 @@ impl KvStorage for u32 {
}

fn main() {
/* force issue_49482_reexport to be loaded */
issue_49482_reexport::foo();

Box::new(2).get();
}
13 changes: 0 additions & 13 deletions src/test/run-make-fulldeps/issue-49482/Makefile

This file was deleted.

0 comments on commit 025d014

Please sign in to comment.