diff options
author | 2018-05-29 12:23:09 +0200 | |
---|---|---|
committer | 2018-05-29 12:23:09 +0200 | |
commit | 7b598c0749aa5390cfefc8e138c05fafa7599dc6 (patch) | |
tree | 96ad83412844c6228e8973e6ea532e75a8e58623 /tests | |
parent | 8e49af1cc0b8b3f4a3c9c4080e63d8d2ee1e6c36 (diff) | |
download | rtic-tq.tar.gz rtic-tq.tar.zst rtic-tq.zip |
bump rtfm-syntaxtq
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cfail/critical-section.rs | 1 | ||||
-rw-r--r-- | tests/cfail/exception.rs | 1 | ||||
-rw-r--r-- | tests/cfail/idle.rs | 1 | ||||
-rw-r--r-- | tests/cfail/init-resource-share-idle.rs | 1 | ||||
-rw-r--r-- | tests/cfail/init-resource-share-task.rs | 1 | ||||
-rw-r--r-- | tests/cfail/init.rs | 1 | ||||
-rw-r--r-- | tests/cfail/interrupt.rs | 1 | ||||
-rw-r--r-- | tests/cfail/late-resource-init.rs | 1 | ||||
-rw-r--r-- | tests/cfail/lock.rs | 1 | ||||
-rw-r--r-- | tests/cfail/priority-too-high.rs | 1 | ||||
-rw-r--r-- | tests/cfail/priority-too-low.rs | 1 | ||||
-rw-r--r-- | tests/cfail/resource-alias.rs | 1 | ||||
-rw-r--r-- | tests/cfail/resource-not-send-sync.rs | 1 | ||||
-rw-r--r-- | tests/cfail/token-outlive.rs | 1 | ||||
-rw-r--r-- | tests/cfail/token-transfer.rs | 1 | ||||
-rw-r--r-- | tests/cfail/wrong-threshold.rs | 1 |
16 files changed, 16 insertions, 0 deletions
diff --git a/tests/cfail/critical-section.rs b/tests/cfail/critical-section.rs index ca521a80..b15bd888 100644 --- a/tests/cfail/critical-section.rs +++ b/tests/cfail/critical-section.rs @@ -2,6 +2,7 @@ #![deny(warnings)] #![feature(const_fn)] #![feature(proc_macro)] +#![feature(proc_macro_gen)] #![no_main] #![no_std] diff --git a/tests/cfail/exception.rs b/tests/cfail/exception.rs index 894c42ae..9cb2debf 100644 --- a/tests/cfail/exception.rs +++ b/tests/cfail/exception.rs @@ -1,6 +1,7 @@ #![deny(unsafe_code)] #![deny(warnings)] #![feature(proc_macro)] +#![feature(proc_macro_gen)] #![no_main] #![no_std] diff --git a/tests/cfail/idle.rs b/tests/cfail/idle.rs index 6de08b37..ec30fd4c 100644 --- a/tests/cfail/idle.rs +++ b/tests/cfail/idle.rs @@ -2,6 +2,7 @@ #![deny(unsafe_code)] #![deny(warnings)] #![feature(proc_macro)] +#![feature(proc_macro_gen)] #![no_main] #![no_std] diff --git a/tests/cfail/init-resource-share-idle.rs b/tests/cfail/init-resource-share-idle.rs index f795b0a8..51d160f7 100644 --- a/tests/cfail/init-resource-share-idle.rs +++ b/tests/cfail/init-resource-share-idle.rs @@ -1,5 +1,6 @@ #![deny(warnings)] #![feature(proc_macro)] +#![feature(proc_macro_gen)] #![no_main] #![no_std] diff --git a/tests/cfail/init-resource-share-task.rs b/tests/cfail/init-resource-share-task.rs index e016a18f..1643442e 100644 --- a/tests/cfail/init-resource-share-task.rs +++ b/tests/cfail/init-resource-share-task.rs @@ -1,6 +1,7 @@ #![deny(unsafe_code)] #![deny(warnings)] #![feature(proc_macro)] +#![feature(proc_macro_gen)] #![no_main] #![no_std] diff --git a/tests/cfail/init.rs b/tests/cfail/init.rs index 7a356e12..9176c4db 100644 --- a/tests/cfail/init.rs +++ b/tests/cfail/init.rs @@ -1,6 +1,7 @@ #![deny(unsafe_code)] #![deny(warnings)] #![feature(proc_macro)] +#![feature(proc_macro_gen)] #![no_main] #![no_std] diff --git a/tests/cfail/interrupt.rs b/tests/cfail/interrupt.rs index faeb96bd..8566b031 100644 --- a/tests/cfail/interrupt.rs +++ b/tests/cfail/interrupt.rs @@ -1,6 +1,7 @@ #![deny(unsafe_code)] #![deny(warnings)] #![feature(proc_macro)] +#![feature(proc_macro_gen)] #![no_main] #![no_std] diff --git a/tests/cfail/late-resource-init.rs b/tests/cfail/late-resource-init.rs index 30ddd0a6..de48f0b0 100644 --- a/tests/cfail/late-resource-init.rs +++ b/tests/cfail/late-resource-init.rs @@ -1,6 +1,7 @@ #![deny(unsafe_code)] #![deny(warnings)] #![feature(proc_macro)] +#![feature(proc_macro_gen)] #![no_main] #![no_std] diff --git a/tests/cfail/lock.rs b/tests/cfail/lock.rs index bc3c47b2..82d0bd43 100644 --- a/tests/cfail/lock.rs +++ b/tests/cfail/lock.rs @@ -2,6 +2,7 @@ #![deny(warnings)] #![feature(const_fn)] #![feature(proc_macro)] +#![feature(proc_macro_gen)] #![no_main] #![no_std] diff --git a/tests/cfail/priority-too-high.rs b/tests/cfail/priority-too-high.rs index 7092b488..80a7e39d 100644 --- a/tests/cfail/priority-too-high.rs +++ b/tests/cfail/priority-too-high.rs @@ -1,4 +1,5 @@ #![feature(proc_macro)] +#![feature(proc_macro_gen)] #![no_main] #![no_std] diff --git a/tests/cfail/priority-too-low.rs b/tests/cfail/priority-too-low.rs index 369b66dc..a72641b1 100644 --- a/tests/cfail/priority-too-low.rs +++ b/tests/cfail/priority-too-low.rs @@ -1,6 +1,7 @@ #![deny(unsafe_code)] #![deny(warnings)] #![feature(proc_macro)] +#![feature(proc_macro_gen)] #![no_main] #![no_std] diff --git a/tests/cfail/resource-alias.rs b/tests/cfail/resource-alias.rs index 76a04302..1e7b9f98 100644 --- a/tests/cfail/resource-alias.rs +++ b/tests/cfail/resource-alias.rs @@ -1,6 +1,7 @@ #![deny(unsafe_code)] #![deny(warnings)] #![feature(proc_macro)] +#![feature(proc_macro_gen)] #![no_main] #![no_std] diff --git a/tests/cfail/resource-not-send-sync.rs b/tests/cfail/resource-not-send-sync.rs index 42558355..e0296089 100644 --- a/tests/cfail/resource-not-send-sync.rs +++ b/tests/cfail/resource-not-send-sync.rs @@ -1,6 +1,7 @@ #![deny(unsafe_code)] #![deny(warnings)] #![feature(proc_macro)] +#![feature(proc_macro_gen)] #![no_main] #![no_std] diff --git a/tests/cfail/token-outlive.rs b/tests/cfail/token-outlive.rs index dde18c2a..7d0656ae 100644 --- a/tests/cfail/token-outlive.rs +++ b/tests/cfail/token-outlive.rs @@ -1,6 +1,7 @@ #![deny(unsafe_code)] #![deny(warnings)] #![feature(proc_macro)] +#![feature(proc_macro_gen)] #![no_main] #![no_std] diff --git a/tests/cfail/token-transfer.rs b/tests/cfail/token-transfer.rs index adac222f..0574197a 100644 --- a/tests/cfail/token-transfer.rs +++ b/tests/cfail/token-transfer.rs @@ -2,6 +2,7 @@ #![deny(warnings)] #![feature(const_fn)] #![feature(proc_macro)] +#![feature(proc_macro_gen)] #![no_main] #![no_std] diff --git a/tests/cfail/wrong-threshold.rs b/tests/cfail/wrong-threshold.rs index 21127980..ac4c088c 100644 --- a/tests/cfail/wrong-threshold.rs +++ b/tests/cfail/wrong-threshold.rs @@ -1,6 +1,7 @@ #![deny(unsafe_code)] #![deny(warnings)] #![feature(proc_macro)] +#![feature(proc_macro_gen)] #![no_main] #![no_std] |