Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cortex-m-rtfm-klee
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KLEE
cortex-m-rtfm-klee
Commits
e90cf07d
Commit
e90cf07d
authored
7 years ago
by
Jorge Aparicio
Browse files
Options
Downloads
Patches
Plain Diff
fix ci
parent
948e1fd0
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ci/script.sh
+2
-2
2 additions, 2 deletions
ci/script.sh
tests/cfail/interrupt.rs
+0
-1
0 additions, 1 deletion
tests/cfail/interrupt.rs
tests/cfail/wrong-threshold.rs
+0
-1
0 additions, 1 deletion
tests/cfail/wrong-threshold.rs
with
2 additions
and
4 deletions
ci/script.sh
+
2
−
2
View file @
e90cf07d
...
...
@@ -3,12 +3,12 @@ set -euxo pipefail
main
()
{
if
[
$TARGET
=
x86_64-unknown-linux-gnu
]
;
then
cargo build
cargo
test
--test
s
cargo
test
--test
cfail
return
fi
xargo build
--target
$TARGET
xargo
test
--target
$TARGET
--examples
xargo
check
--target
$TARGET
--examples
}
main
This diff is collapsed.
Click to expand it.
tests/cfail/interrupt.rs
+
0
−
1
View file @
e90cf07d
...
...
@@ -9,7 +9,6 @@ use rtfm::app;
app!
{
//~^ error no associated item named `EXTI33` found for type
//~| error no associated item named `EXTI33` found for type
device
:
stm32f103xx
,
tasks
:
{
...
...
This diff is collapsed.
Click to expand it.
tests/cfail/wrong-threshold.rs
+
0
−
1
View file @
e90cf07d
...
...
@@ -39,7 +39,6 @@ fn idle() -> ! {
fn
exti0
(
mut
ot
:
&
mut
Threshold
,
r
:
EXTI0
::
Resources
)
{
r
.A
.claim
(
&
mut
ot
,
|
_a
,
mut
_it
|
{
//~^ error cannot borrow `ot` as mutable more than once at a time
//~| error cannot borrow `ot` as mutable more than once at a time
// ERROR must use inner token `it` instead of the outer one (`ot`)
r
.B
.claim
(
&
mut
ot
,
|
_b
,
_
|
{})
});
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment