diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2017-04-14 10:18:50 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2017-04-14 10:18:50 -0500 |
| commit | 4d8d53a20613efc27042c965765588e4c7fce46d (patch) | |
| tree | 0489c3e0bd3345fbb27076edea43724bcc73af7b /tests/cfail/race-2.rs | |
| parent | 3d88f6c6bf53873bda679a18fc97be8ee50fa3c3 (diff) | |
add another would-be data race compile fail test
Diffstat (limited to 'tests/cfail/race-2.rs')
| -rw-r--r-- | tests/cfail/race-2.rs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/cfail/race-2.rs b/tests/cfail/race-2.rs new file mode 100644 index 0000000..c2f564e --- /dev/null +++ b/tests/cfail/race-2.rs @@ -0,0 +1,22 @@ +extern crate cortex_m_srp as srp; + +use srp::{C2, C4, P1, P3, Resource}; + +static R1: Resource<i32, C2> = Resource::new(0); +static R2: Resource<i32, C4> = Resource::new(0); + +fn j1(prio: P1) { + R1.lock(&prio, |r1, _| { + // Would preempt this critical section + // srp::request(j2); + }); +} + +fn j2(prio: P3) { + R2.lock(&prio, |r2, c4| { + // OK C2 (R1's ceiling) <= C4 (system ceiling) + // BAD C2 (R1's ceiling) < P3 (j2's priority) + let r1 = R1.borrow(&prio, &c4); + //~^ error + }); +} |
