mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-29 15:04:32 +01:00
Merge pull request #450 from AfoHT/testssingleonly
Cleanup of tests, solve duplicate panic handler error
This commit is contained in:
commit
4714b8ee54
31 changed files with 77 additions and 88 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
@ -474,7 +474,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
use-cross: false
|
use-cross: false
|
||||||
command: test
|
command: test
|
||||||
args: --test single --features __v7
|
args: --test tests --features __v7
|
||||||
|
|
||||||
# Run test suite for thumbv6m
|
# Run test suite for thumbv6m
|
||||||
testv6:
|
testv6:
|
||||||
|
@ -515,7 +515,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
use-cross: false
|
use-cross: false
|
||||||
command: test
|
command: test
|
||||||
args: --test single
|
args: --test tests
|
||||||
|
|
||||||
# Build documentation, check links
|
# Build documentation, check links
|
||||||
docs:
|
docs:
|
||||||
|
|
|
@ -68,7 +68,6 @@ version_check = "0.9"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
lm3s6965 = "0.1.3"
|
lm3s6965 = "0.1.3"
|
||||||
panic-halt = "0.2.0"
|
|
||||||
cortex-m-semihosting = "0.3.3"
|
cortex-m-semihosting = "0.3.3"
|
||||||
|
|
||||||
[dev-dependencies.panic-semihosting]
|
[dev-dependencies.panic-semihosting]
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
#![no_main]
|
#![no_main]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
use panic_halt as _;
|
use panic_semihosting as _;
|
||||||
|
|
||||||
/// Some big struct
|
/// Some big struct
|
||||||
pub struct BigStruct {
|
pub struct BigStruct {
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
use core::marker::PhantomData;
|
use core::marker::PhantomData;
|
||||||
use panic_halt as _;
|
use panic_semihosting as _;
|
||||||
|
|
||||||
pub struct NotSync {
|
pub struct NotSync {
|
||||||
_0: PhantomData<*const ()>,
|
_0: PhantomData<*const ()>,
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#![no_main]
|
#![no_main]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
use panic_halt as _;
|
use panic_semihosting as _;
|
||||||
|
|
||||||
// NOTE: does NOT work on QEMU!
|
// NOTE: does NOT work on QEMU!
|
||||||
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
|
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#![no_main]
|
#![no_main]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
use panic_halt as _;
|
use panic_semihosting as _;
|
||||||
|
|
||||||
#[rtic::app(device = lm3s6965)]
|
#[rtic::app(device = lm3s6965)]
|
||||||
mod app {
|
mod app {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#![no_main]
|
#![no_main]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
use panic_halt as _;
|
use panic_semihosting as _;
|
||||||
|
|
||||||
#[rtic::app(device = lm3s6965)]
|
#[rtic::app(device = lm3s6965)]
|
||||||
mod app {
|
mod app {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#![no_main]
|
#![no_main]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
use panic_halt as _;
|
use panic_semihosting as _;
|
||||||
|
|
||||||
#[rtic::app(device = lm3s6965, dispatchers = [SSI0, QEI0])]
|
#[rtic::app(device = lm3s6965, dispatchers = [SSI0, QEI0])]
|
||||||
mod app {
|
mod app {
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
use core::marker::PhantomData;
|
use core::marker::PhantomData;
|
||||||
|
|
||||||
use panic_halt as _;
|
use panic_semihosting as _;
|
||||||
|
|
||||||
pub struct NotSend {
|
pub struct NotSend {
|
||||||
_0: PhantomData<*const ()>,
|
_0: PhantomData<*const ()>,
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#![no_main]
|
#![no_main]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
use panic_halt as _;
|
use panic_semihosting as _;
|
||||||
|
|
||||||
#[rtic::app(device = lm3s6965)]
|
#[rtic::app(device = lm3s6965)]
|
||||||
mod app {
|
mod app {
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#![no_main]
|
#![no_main]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
use panic_halt as _;
|
use panic_semihosting as _;
|
||||||
|
|
||||||
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
|
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
|
||||||
mod app {
|
mod app {
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#![no_main]
|
#![no_main]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
use panic_halt as _;
|
use panic_semihosting as _;
|
||||||
|
|
||||||
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
|
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
|
||||||
mod app {
|
mod app {
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#![no_main]
|
#![no_main]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
use panic_halt as _;
|
use panic_semihosting as _;
|
||||||
|
|
||||||
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
|
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
|
||||||
mod app {
|
mod app {
|
||||||
|
|
|
@ -3,5 +3,5 @@ use trybuild::TestCases;
|
||||||
#[test]
|
#[test]
|
||||||
fn ui() {
|
fn ui() {
|
||||||
let t = TestCases::new();
|
let t = TestCases::new();
|
||||||
t.compile_fail("ui/single/*.rs");
|
t.compile_fail("ui/*.rs");
|
||||||
}
|
}
|
|
@ -1,5 +1,6 @@
|
||||||
#![no_main]
|
#![no_main]
|
||||||
use panic_halt as _;
|
|
||||||
|
use panic_semihosting as _;
|
||||||
|
|
||||||
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
|
#[rtic::app(device = lm3s6965, dispatchers = [SSI0])]
|
||||||
mod app {
|
mod app {
|
29
ui/locals-cfg.stderr
Normal file
29
ui/locals-cfg.stderr
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
error[E0425]: cannot find value `FOO` in this scope
|
||||||
|
--> $DIR/locals-cfg.rs:12:9
|
||||||
|
|
|
||||||
|
12 | FOO;
|
||||||
|
| ^^^ not found in this scope
|
||||||
|
|
||||||
|
error[E0425]: cannot find value `FOO` in this scope
|
||||||
|
--> $DIR/locals-cfg.rs:22:9
|
||||||
|
|
|
||||||
|
22 | FOO;
|
||||||
|
| ^^^ not found in this scope
|
||||||
|
|
||||||
|
error[E0425]: cannot find value `FOO` in this scope
|
||||||
|
--> $DIR/locals-cfg.rs:32:9
|
||||||
|
|
|
||||||
|
32 | FOO;
|
||||||
|
| ^^^ not found in this scope
|
||||||
|
|
||||||
|
error[E0425]: cannot find value `FOO` in this scope
|
||||||
|
--> $DIR/locals-cfg.rs:40:9
|
||||||
|
|
|
||||||
|
40 | FOO;
|
||||||
|
| ^^^ not found in this scope
|
||||||
|
|
||||||
|
error[E0425]: cannot find value `FOO` in this scope
|
||||||
|
--> $DIR/locals-cfg.rs:48:9
|
||||||
|
|
|
||||||
|
48 | FOO;
|
||||||
|
| ^^^ not found in this scope
|
|
@ -1,5 +1,6 @@
|
||||||
#![no_main]
|
#![no_main]
|
||||||
use panic_halt as _;
|
|
||||||
|
use panic_semihosting as _;
|
||||||
|
|
||||||
#[rtic::app(device = lm3s6965)]
|
#[rtic::app(device = lm3s6965)]
|
||||||
mod app {
|
mod app {
|
|
@ -1,125 +1,119 @@
|
||||||
error: duplicate lang item in crate `panic_halt` (which `$CRATE` depends on): `panic_impl`.
|
|
||||||
|
|
|
||||||
= note: the lang item is first defined in crate `std` (which `$CRATE` depends on)
|
|
||||||
= note: first definition in `std` loaded from /usr/share/rust/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-6f77337c1826707d.rlib
|
|
||||||
= note: second definition in `panic_halt` loaded from $DIR/target/tests/target/x86_64-unknown-linux-gnu/debug/deps/libpanic_halt-ad4cf7fac73711f1.rmeta
|
|
||||||
|
|
||||||
error[E0609]: no field `o1` on type `__rtic_internal_initResources<'_>`
|
error[E0609]: no field `o1` on type `__rtic_internal_initResources<'_>`
|
||||||
--> $DIR/resources-cfg.rs:47:21
|
--> $DIR/resources-cfg.rs:48:21
|
||||||
|
|
|
|
||||||
47 | c.resources.o1;
|
48 | c.resources.o1;
|
||||||
| ^^ unknown field
|
| ^^ unknown field
|
||||||
|
|
|
|
||||||
= note: available fields are: `__marker__`
|
= note: available fields are: `__marker__`
|
||||||
|
|
||||||
error[E0609]: no field `o4` on type `__rtic_internal_initResources<'_>`
|
error[E0609]: no field `o4` on type `__rtic_internal_initResources<'_>`
|
||||||
--> $DIR/resources-cfg.rs:48:21
|
--> $DIR/resources-cfg.rs:49:21
|
||||||
|
|
|
|
||||||
48 | c.resources.o4;
|
49 | c.resources.o4;
|
||||||
| ^^ unknown field
|
| ^^ unknown field
|
||||||
|
|
|
|
||||||
= note: available fields are: `__marker__`
|
= note: available fields are: `__marker__`
|
||||||
|
|
||||||
error[E0609]: no field `o5` on type `__rtic_internal_initResources<'_>`
|
error[E0609]: no field `o5` on type `__rtic_internal_initResources<'_>`
|
||||||
--> $DIR/resources-cfg.rs:49:21
|
--> $DIR/resources-cfg.rs:50:21
|
||||||
|
|
|
|
||||||
49 | c.resources.o5;
|
50 | c.resources.o5;
|
||||||
| ^^ unknown field
|
| ^^ unknown field
|
||||||
|
|
|
|
||||||
= note: available fields are: `__marker__`
|
= note: available fields are: `__marker__`
|
||||||
|
|
||||||
error[E0609]: no field `o6` on type `__rtic_internal_initResources<'_>`
|
error[E0609]: no field `o6` on type `__rtic_internal_initResources<'_>`
|
||||||
--> $DIR/resources-cfg.rs:50:21
|
--> $DIR/resources-cfg.rs:51:21
|
||||||
|
|
|
|
||||||
50 | c.resources.o6;
|
51 | c.resources.o6;
|
||||||
| ^^ unknown field
|
| ^^ unknown field
|
||||||
|
|
|
|
||||||
= note: available fields are: `__marker__`
|
= note: available fields are: `__marker__`
|
||||||
|
|
||||||
error[E0609]: no field `s3` on type `__rtic_internal_initResources<'_>`
|
error[E0609]: no field `s3` on type `__rtic_internal_initResources<'_>`
|
||||||
--> $DIR/resources-cfg.rs:51:21
|
--> $DIR/resources-cfg.rs:52:21
|
||||||
|
|
|
|
||||||
51 | c.resources.s3;
|
52 | c.resources.s3;
|
||||||
| ^^ unknown field
|
| ^^ unknown field
|
||||||
|
|
|
|
||||||
= note: available fields are: `__marker__`
|
= note: available fields are: `__marker__`
|
||||||
|
|
||||||
error[E0609]: no field `o2` on type `__rtic_internal_idleResources<'_>`
|
error[E0609]: no field `o2` on type `__rtic_internal_idleResources<'_>`
|
||||||
--> $DIR/resources-cfg.rs:58:21
|
--> $DIR/resources-cfg.rs:59:21
|
||||||
|
|
|
|
||||||
58 | c.resources.o2;
|
59 | c.resources.o2;
|
||||||
| ^^ unknown field
|
| ^^ unknown field
|
||||||
|
|
|
|
||||||
= note: available fields are: `__marker__`
|
= note: available fields are: `__marker__`
|
||||||
|
|
||||||
error[E0609]: no field `o4` on type `__rtic_internal_idleResources<'_>`
|
error[E0609]: no field `o4` on type `__rtic_internal_idleResources<'_>`
|
||||||
--> $DIR/resources-cfg.rs:59:21
|
--> $DIR/resources-cfg.rs:60:21
|
||||||
|
|
|
|
||||||
59 | c.resources.o4;
|
60 | c.resources.o4;
|
||||||
| ^^ unknown field
|
| ^^ unknown field
|
||||||
|
|
|
|
||||||
= note: available fields are: `__marker__`
|
= note: available fields are: `__marker__`
|
||||||
|
|
||||||
error[E0609]: no field `s1` on type `__rtic_internal_idleResources<'_>`
|
error[E0609]: no field `s1` on type `__rtic_internal_idleResources<'_>`
|
||||||
--> $DIR/resources-cfg.rs:60:21
|
--> $DIR/resources-cfg.rs:61:21
|
||||||
|
|
|
|
||||||
60 | c.resources.s1;
|
61 | c.resources.s1;
|
||||||
| ^^ unknown field
|
| ^^ unknown field
|
||||||
|
|
|
|
||||||
= note: available fields are: `__marker__`
|
= note: available fields are: `__marker__`
|
||||||
|
|
||||||
error[E0609]: no field `s3` on type `__rtic_internal_idleResources<'_>`
|
error[E0609]: no field `s3` on type `__rtic_internal_idleResources<'_>`
|
||||||
--> $DIR/resources-cfg.rs:61:21
|
--> $DIR/resources-cfg.rs:62:21
|
||||||
|
|
|
|
||||||
61 | c.resources.s3;
|
62 | c.resources.s3;
|
||||||
| ^^ unknown field
|
| ^^ unknown field
|
||||||
|
|
|
|
||||||
= note: available fields are: `__marker__`
|
= note: available fields are: `__marker__`
|
||||||
|
|
||||||
error[E0609]: no field `o3` on type `__rtic_internal_uart0Resources<'_>`
|
error[E0609]: no field `o3` on type `__rtic_internal_uart0Resources<'_>`
|
||||||
--> $DIR/resources-cfg.rs:68:21
|
--> $DIR/resources-cfg.rs:69:21
|
||||||
|
|
|
|
||||||
68 | c.resources.o3;
|
69 | c.resources.o3;
|
||||||
| ^^ unknown field
|
| ^^ unknown field
|
||||||
|
|
|
|
||||||
= note: available fields are: `__marker__`
|
= note: available fields are: `__marker__`
|
||||||
|
|
||||||
error[E0609]: no field `s1` on type `__rtic_internal_uart0Resources<'_>`
|
error[E0609]: no field `s1` on type `__rtic_internal_uart0Resources<'_>`
|
||||||
--> $DIR/resources-cfg.rs:69:21
|
--> $DIR/resources-cfg.rs:70:21
|
||||||
|
|
|
|
||||||
69 | c.resources.s1;
|
70 | c.resources.s1;
|
||||||
| ^^ unknown field
|
| ^^ unknown field
|
||||||
|
|
|
|
||||||
= note: available fields are: `__marker__`
|
= note: available fields are: `__marker__`
|
||||||
|
|
||||||
error[E0609]: no field `s2` on type `__rtic_internal_uart0Resources<'_>`
|
error[E0609]: no field `s2` on type `__rtic_internal_uart0Resources<'_>`
|
||||||
--> $DIR/resources-cfg.rs:70:21
|
--> $DIR/resources-cfg.rs:71:21
|
||||||
|
|
|
|
||||||
70 | c.resources.s2;
|
71 | c.resources.s2;
|
||||||
| ^^ unknown field
|
| ^^ unknown field
|
||||||
|
|
|
|
||||||
= note: available fields are: `__marker__`
|
= note: available fields are: `__marker__`
|
||||||
|
|
||||||
error[E0609]: no field `s3` on type `__rtic_internal_uart0Resources<'_>`
|
error[E0609]: no field `s3` on type `__rtic_internal_uart0Resources<'_>`
|
||||||
--> $DIR/resources-cfg.rs:71:21
|
--> $DIR/resources-cfg.rs:72:21
|
||||||
|
|
|
|
||||||
71 | c.resources.s3;
|
72 | c.resources.s3;
|
||||||
| ^^ unknown field
|
| ^^ unknown field
|
||||||
|
|
|
|
||||||
= note: available fields are: `__marker__`
|
= note: available fields are: `__marker__`
|
||||||
|
|
||||||
error[E0609]: no field `s2` on type `__rtic_internal_uart1Resources<'_>`
|
error[E0609]: no field `s2` on type `__rtic_internal_uart1Resources<'_>`
|
||||||
--> $DIR/resources-cfg.rs:76:21
|
--> $DIR/resources-cfg.rs:77:21
|
||||||
|
|
|
|
||||||
76 | c.resources.s2;
|
77 | c.resources.s2;
|
||||||
| ^^ unknown field
|
| ^^ unknown field
|
||||||
|
|
|
|
||||||
= note: available fields are: `__marker__`
|
= note: available fields are: `__marker__`
|
||||||
|
|
||||||
error[E0609]: no field `o5` on type `__rtic_internal_uart1Resources<'_>`
|
error[E0609]: no field `o5` on type `__rtic_internal_uart1Resources<'_>`
|
||||||
--> $DIR/resources-cfg.rs:77:21
|
--> $DIR/resources-cfg.rs:78:21
|
||||||
|
|
|
|
||||||
77 | c.resources.o5;
|
78 | c.resources.o5;
|
||||||
| ^^ unknown field
|
| ^^ unknown field
|
||||||
|
|
|
|
||||||
= note: available fields are: `__marker__`
|
= note: available fields are: `__marker__`
|
|
@ -1,35 +0,0 @@
|
||||||
error[E0425]: cannot find value `FOO` in this scope
|
|
||||||
--> $DIR/locals-cfg.rs:11:9
|
|
||||||
|
|
|
||||||
11 | FOO;
|
|
||||||
| ^^^ not found in this scope
|
|
||||||
|
|
||||||
error[E0425]: cannot find value `FOO` in this scope
|
|
||||||
--> $DIR/locals-cfg.rs:21:9
|
|
||||||
|
|
|
||||||
21 | FOO;
|
|
||||||
| ^^^ not found in this scope
|
|
||||||
|
|
||||||
error[E0425]: cannot find value `FOO` in this scope
|
|
||||||
--> $DIR/locals-cfg.rs:31:9
|
|
||||||
|
|
|
||||||
31 | FOO;
|
|
||||||
| ^^^ not found in this scope
|
|
||||||
|
|
||||||
error[E0425]: cannot find value `FOO` in this scope
|
|
||||||
--> $DIR/locals-cfg.rs:39:9
|
|
||||||
|
|
|
||||||
39 | FOO;
|
|
||||||
| ^^^ not found in this scope
|
|
||||||
|
|
||||||
error[E0425]: cannot find value `FOO` in this scope
|
|
||||||
--> $DIR/locals-cfg.rs:47:9
|
|
||||||
|
|
|
||||||
47 | FOO;
|
|
||||||
| ^^^ not found in this scope
|
|
||||||
|
|
||||||
error: duplicate lang item in crate `panic_halt` (which `$CRATE` depends on): `panic_impl`.
|
|
||||||
|
|
|
||||||
= note: the lang item is first defined in crate `std` (which `$CRATE` depends on)
|
|
||||||
= note: first definition in `std` loaded from /usr/share/rust/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-6f77337c1826707d.rlib
|
|
||||||
= note: second definition in `panic_halt` loaded from $DIR/target/tests/target/x86_64-unknown-linux-gnu/debug/deps/libpanic_halt-ad4cf7fac73711f1.rmeta
|
|
Loading…
Reference in a new issue