mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-31 00:53:48 +00:00
Add tests for cross-crate condition handling. Close #5446.
This commit is contained in:
parent
eaa378033c
commit
29a449aae3
19
src/test/auxiliary/xc_conditions.rs
Normal file
19
src/test/auxiliary/xc_conditions.rs
Normal file
@ -0,0 +1,19 @@
|
||||
// Copyright 2012 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.
|
||||
|
||||
#[crate_type="lib"];
|
||||
|
||||
condition! {
|
||||
pub oops: int -> int;
|
||||
}
|
||||
|
||||
pub fn trouble() -> int {
|
||||
oops::cond.raise(1)
|
||||
}
|
15
src/test/auxiliary/xc_conditions_2.rs
Normal file
15
src/test/auxiliary/xc_conditions_2.rs
Normal file
@ -0,0 +1,15 @@
|
||||
// Copyright 2012 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.
|
||||
|
||||
#[crate_type="lib"];
|
||||
|
||||
condition! {
|
||||
pub oops: int -> int;
|
||||
}
|
21
src/test/auxiliary/xc_conditions_3.rs
Normal file
21
src/test/auxiliary/xc_conditions_3.rs
Normal file
@ -0,0 +1,21 @@
|
||||
// Copyright 2012 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.
|
||||
|
||||
#[crate_type="lib"];
|
||||
|
||||
condition! {
|
||||
pub oops: int -> int;
|
||||
}
|
||||
|
||||
pub fn guard(k: extern fn() -> int, x: int) -> int {
|
||||
do oops::cond.trap(|i| i*x).inside {
|
||||
k()
|
||||
}
|
||||
}
|
29
src/test/auxiliary/xc_conditions_4.rs
Normal file
29
src/test/auxiliary/xc_conditions_4.rs
Normal file
@ -0,0 +1,29 @@
|
||||
// Copyright 2012 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.
|
||||
|
||||
#[crate_type="lib"];
|
||||
|
||||
#[deriving(Eq)]
|
||||
pub enum Color {
|
||||
Red, Green, Blue
|
||||
}
|
||||
|
||||
condition! {
|
||||
pub oops: (int,float,~str) -> ::Color;
|
||||
}
|
||||
|
||||
pub trait Thunk<T> {
|
||||
fn call(self) -> T;
|
||||
}
|
||||
|
||||
pub fn callback<T,TH:Thunk<T>>(t:TH) -> T {
|
||||
t.call()
|
||||
}
|
||||
|
40
src/test/run-pass/xc_conditions_client.rs
Normal file
40
src/test/run-pass/xc_conditions_client.rs
Normal file
@ -0,0 +1,40 @@
|
||||
// Copyright 2012 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.
|
||||
|
||||
// xfail-fast
|
||||
// aux-build:xc_conditions.rs
|
||||
|
||||
extern mod xc_conditions;
|
||||
use xc_conditions::oops;
|
||||
use xc_conditions::trouble;
|
||||
|
||||
// Tests of cross-crate conditions; the condition is
|
||||
// defined in lib, and we test various combinations
|
||||
// of `trap` and `raise` in the client or the lib where
|
||||
// the condition was defined. Also in test #4 we use
|
||||
// more complex features (generics, traits) in
|
||||
// combination with the condition.
|
||||
//
|
||||
// trap raise
|
||||
// ------------
|
||||
// xc_conditions : client lib
|
||||
// xc_conditions_2: client client
|
||||
// xc_conditions_3: lib client
|
||||
// xc_conditions_4: client client (with traits)
|
||||
//
|
||||
// the trap=lib, raise=lib case isn't tested since
|
||||
// there's no cross-crate-ness to test in that case.
|
||||
|
||||
pub fn main() {
|
||||
do oops::cond.trap(|_i| 12345).inside {
|
||||
let x = trouble();
|
||||
assert_eq!(x,12345);
|
||||
}
|
||||
}
|
21
src/test/run-pass/xc_conditions_client_2.rs
Normal file
21
src/test/run-pass/xc_conditions_client_2.rs
Normal file
@ -0,0 +1,21 @@
|
||||
// Copyright 2012 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.
|
||||
|
||||
// xfail-fast
|
||||
// aux-build:xc_conditions_2.rs
|
||||
|
||||
extern mod xc_conditions_2;
|
||||
use xcc = xc_conditions_2;
|
||||
|
||||
pub fn main() {
|
||||
do xcc::oops::cond.trap(|_| 1).inside {
|
||||
xcc::oops::cond.raise(1);
|
||||
}
|
||||
}
|
38
src/test/run-pass/xc_conditions_client_3.rs
Normal file
38
src/test/run-pass/xc_conditions_client_3.rs
Normal file
@ -0,0 +1,38 @@
|
||||
// Copyright 2012 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.
|
||||
|
||||
// xfail-fast
|
||||
// aux-build:xc_conditions_3.rs
|
||||
|
||||
extern mod xc_conditions_3;
|
||||
use xcc = xc_conditions_3;
|
||||
|
||||
pub fn main() {
|
||||
assert_eq!(xcc::guard(a, 1), 40);
|
||||
}
|
||||
|
||||
pub fn a() -> int {
|
||||
assert_eq!(xcc::oops::cond.raise(7), 7);
|
||||
xcc::guard(b, 2)
|
||||
}
|
||||
|
||||
pub fn b() -> int {
|
||||
assert_eq!(xcc::oops::cond.raise(8), 16);
|
||||
xcc::guard(c, 3)
|
||||
}
|
||||
|
||||
pub fn c() -> int {
|
||||
assert_eq!(xcc::oops::cond.raise(9), 27);
|
||||
xcc::guard(d, 4)
|
||||
}
|
||||
|
||||
pub fn d() -> int {
|
||||
xcc::oops::cond.raise(10)
|
||||
}
|
32
src/test/run-pass/xc_conditions_client_4.rs
Normal file
32
src/test/run-pass/xc_conditions_client_4.rs
Normal file
@ -0,0 +1,32 @@
|
||||
// Copyright 2012 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.
|
||||
|
||||
// xfail-fast
|
||||
// aux-build:xc_conditions_4.rs
|
||||
|
||||
extern mod xc_conditions_4;
|
||||
use xcc = xc_conditions_4;
|
||||
|
||||
struct SThunk {
|
||||
x: int
|
||||
}
|
||||
|
||||
impl xcc::Thunk<xcc::Color> for SThunk {
|
||||
fn call(self) -> xcc::Color {
|
||||
xcc::oops::cond.raise((self.x, 1.23, ~"oh no"))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn main() {
|
||||
do xcc::oops::cond.trap(|_| xcc::Red).inside {
|
||||
let t = SThunk { x : 10 };
|
||||
assert_eq!(xcc::callback(t), xcc::Red)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user