Skip to content

Commit

Permalink
Add tests that the injected runtime is inaccessible
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Jul 25, 2014
1 parent 8f692e6 commit 6e03944
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/test/compile-fail/hidden-rt-injection.rs
@@ -0,0 +1,18 @@
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// This is testing that users can't access the runtime crate.

mod m {
// The rt has been called both 'native' and 'rt'
use native; //~ ERROR unresolved import
}

fn main() { }
18 changes: 18 additions & 0 deletions src/test/compile-fail/hidden-rt-injection2.rs
@@ -0,0 +1,18 @@
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// This is testing that users can't access the runtime crate.

mod m {
// The rt has been called both 'native' and 'rt'
use rt; //~ ERROR unresolved import
}

fn main() { }

5 comments on commit 6e03944

@bors
Copy link
Contributor

@bors bors commented on 6e03944 Jul 26, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from alexcrichton
at brson@6e03944

@bors
Copy link
Contributor

@bors bors commented on 6e03944 Jul 26, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging brson/rust/hidestdrt = 6e03944 into auto

@bors
Copy link
Contributor

@bors bors commented on 6e03944 Jul 26, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

brson/rust/hidestdrt = 6e03944 merged ok, testing candidate = cf61980

@bors
Copy link
Contributor

@bors bors commented on 6e03944 Jul 26, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = cf61980

Please sign in to comment.