| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-03-03 | Update the tests file to find the tests | Henrik Tjäder | |
| 2021-03-03 | Remove keyword single for all tests | Henrik Tjäder | |
| 2019-11-06 | CI: replace compiletest-rs with trybuild | Jorge Aparicio | |
| We use compiletest to run compile-fail tests but compiletest depends on compiler internals so it breaks every now and then and requires nightly. With trybuild we can also run compile-fail tests but it works on stable and it already has reached version 1.0 | |||
| 2019-08-21 | drop the "multi" test | Jorge Aparicio | |
| 2019-08-20 | adapt to changes in rtfm-syntax | Jorge Aparicio | |
| 2019-06-13 | rtfm-syntax refactor + heterogeneous multi-core support | Jorge Aparicio | |
| 2019-05-21 | remove unused check | Jorge Aparicio | |
| that was added in #140 but it's no longer required | |||
| 2019-05-01 | test RFC 147 | Jorge Aparicio | |
| 2019-05-01 | update compile-fail tests | Jorge Aparicio | |
| 2019-05-01 | update compile-pass tests | Jorge Aparicio | |
| 2019-04-16 | check task priority at compile time | Jorge Aparicio | |
| before we were checking the priority at runtime. The compile time error message when the priority is too high is kind of awful though. | |||
| 2019-02-26 | fix warnings in cpass test | Jorge Aparicio | |
| 2019-02-26 | make cfail test actually fail | Jorge Aparicio | |
| 2019-02-26 | add some tests | Jorge Aparicio | |
| 2019-02-23 | reject duplicate arguments in #[interrupt] and #[exception] | Jorge Aparicio | |
| This program was being accepted: ``` rust #[task( capacity = 1, capacity = 2, priority = 1, priority = 2, )] fn foo() {} ``` now it will trigger a compiler error | |||
| 2019-02-16 | cargo fmt | Jorge Aparicio | |
| 2019-02-12 | update examples and tests | Jorge Aparicio | |
| 2019-02-12 | forbid early returns in init | Jorge Aparicio | |
| 2018-12-16 | properly handle `#[cfg]` (conditional compilation) on tasks | Jorge Aparicio | |
| 2018-12-16 | properly handle #[cfg] (conditional compilation) on resources | Jorge Aparicio | |
| 2018-12-15 | remove no longer necessary feature gates | Jorge Aparicio | |
| 2018-11-04 | fix codegen | Jorge Aparicio | |
| 2018-11-03 | v0.4.0 | Jorge Aparicio | |
| closes #32 closes #33 | |||
| 2018-08-24 | more fixes | Jorge Aparicio | |
| 2018-04-16 | cargo fmt | Jorge Aparicio | |
| 2018-04-16 | update parser | Jorge Aparicio | |
| closes #69 this doesn't change functionality per se but improves diagnostics in some cases. Some hard errors have becomes warnings, for example: when `resources` is empty, or when `idle.path` is set to the default `idle` path. | |||
| 2017-12-09 | safe `&'static mut` references via init.resources | Jorge Aparicio | |
| 2017-12-09 | implement the Resource trait for owned resources | Jorge Aparicio | |
| this unbreaks the "generics" example | |||
| 2017-12-09 | make resource proxies not Sync | Jorge Aparicio | |
| 2017-12-09 | deny warnings and unsafe code in tests and examples | Jorge Aparicio | |
| 2017-12-09 | make resource proxies !Send | Jorge Aparicio | |
| 2017-12-09 | rename LateResourceValues to LateResources | Jorge Aparicio | |
| 2017-12-08 | fix cfail tests | Jorge Aparicio | |
| 2017-11-22 | fix ci | Jorge Aparicio | |
| 2017-09-22 | Add cfail test for late resources | Jonas Schievink | |
| 2017-09-22 | Fix warning in wrong-threshold cfail test | Jonas Schievink | |
| 2017-09-22 | Don't use deprecated method to create compiletest config | Jonas Schievink | |
| 2017-07-27 | `Send`-ness check is now in rtfm-core | Jorge Aparicio | |
| 2017-07-27 | make task.$T.enabled optional | Jorge Aparicio | |
| and move the logic that differentiates interrupts from exceptions from the crate to the procedural macro logic | |||
| 2017-07-27 | update tests and examples | Jorge Aparicio | |
| with task! gone 3 types of errors / gotchas have been eliminated :tada: | |||
| 2017-07-24 | add another duplicated-handler cfail test | Jorge Aparicio | |
| 2017-07-23 | add cfail test: borrow can't escape critical sections | Jorge Aparicio | |
| 2017-07-23 | update cfail tests | Jorge Aparicio | |
| 2017-07-20 | more cfail tests | Jorge Aparicio | |
| 2017-07-18 | tasks / idle have exclusive access to Threshold, but do not own the token | Jorge Aparicio | |
| 2017-07-18 | add cfail tests | Jorge Aparicio | |
| 2017-07-04 | rtfm! macro take 2 | Jorge Aparicio | |
| 2017-05-08 | require Resource protected data to be Send, make tokens !Send | Jorge Aparicio | |
| 2017-05-08 | replace the ceiling token with a preemption threshold token | Jorge Aparicio | |
| 2017-04-27 | make the ceiling part of the task signature | Jorge Aparicio | |
| remove the P.as_ceiling method | |||
