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
99df0776
Commit
99df0776
authored
7 years ago
by
homunkulus
Browse files
Options
Downloads
Plain Diff
Auto merge of #51 - japaric:ci, r=japaric
fix ci None
parents
948e1fd0
cdb2118c
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.travis.yml
+2
-1
2 additions, 1 deletion
.travis.yml
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
4 additions
and
5 deletions
.travis.yml
+
2
−
1
View file @
99df0776
...
...
@@ -3,7 +3,8 @@ language: rust
matrix
:
include
:
-
env
:
TARGET=x86_64-unknown-linux-gnu
rust
:
nightly
# work around problem about 'every suggestion should have at least one span'
rust
:
nightly-2017-11-21
-
env
:
TARGET=thumbv6m-none-eabi
rust
:
nightly
...
...
This diff is collapsed.
Click to expand it.
ci/script.sh
+
2
−
2
View file @
99df0776
...
...
@@ -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 @
99df0776
...
...
@@ -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 @
99df0776
...
...
@@ -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