diff options
author | 2017-12-08 13:28:27 +0100 | |
---|---|---|
committer | 2017-12-08 13:28:27 +0100 | |
commit | 8e523d036c83fff35182d2fc50d042da866982a7 (patch) | |
tree | f69e994b25bb8cf351b3c38db57f783f0a2a46b5 | |
parent | 99df0776c68fdb377ef7daa34f7fd8481fea590f (diff) | |
download | rtic-8e523d036c83fff35182d2fc50d042da866982a7.tar.gz rtic-8e523d036c83fff35182d2fc50d042da866982a7.tar.zst rtic-8e523d036c83fff35182d2fc50d042da866982a7.zip |
fix cfail tests
Diffstat (limited to '')
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | tests/cfail/interrupt.rs | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -19,7 +19,7 @@ rtfm-core = "0.1.0" cortex-m-rtfm-macros = "0.2.1" [target.'cfg(target_arch = "x86_64")'.dev-dependencies] -compiletest_rs = "0.2.8" +compiletest_rs = "0.3.3" [dev-dependencies.cortex-m-rt] features = ["abort-on-panic"] diff --git a/tests/cfail/interrupt.rs b/tests/cfail/interrupt.rs index 66d2098b..b913d832 100644 --- a/tests/cfail/interrupt.rs +++ b/tests/cfail/interrupt.rs @@ -8,7 +8,7 @@ extern crate stm32f103xx; use rtfm::app; app! { - //~^ error no associated item named `EXTI33` found for type + //~^ error no variant named `EXTI33` found for type device: stm32f103xx, tasks: { |