Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
klee-examples
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
Per Lindgren
klee-examples
Commits
5441e3f9
Commit
5441e3f9
authored
5 years ago
by
Per Lindgren
Browse files
Options
Downloads
Patches
Plain Diff
fixed the missing import and Cargo.toml (no longer assuming a local path to probe.rs)
parent
a8b6f47b
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
runner/Cargo.toml
+1
-1
1 addition, 1 deletion
runner/Cargo.toml
runner/src/lib.rs
+2
-0
2 additions, 0 deletions
runner/src/lib.rs
with
3 additions
and
1 deletion
runner/Cargo.toml
+
1
−
1
View file @
5441e3f9
...
...
@@ -7,7 +7,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
probe-rs
=
{
path
=
"../../probe-rs/probe-rs"
,
version
=
"0.3.0"
}
probe-rs
=
{
version
=
"0.3.0"
}
ktest
=
{
path
=
"../ktest"
,
version
=
"0.1.0"
}
failure
=
"0.1.6"
...
...
This diff is collapsed.
Click to expand it.
runner/src/lib.rs
+
2
−
0
View file @
5441e3f9
use
ktest
::{
read_ktest
,
KTEST
};
pub
mod
common
;
use
probe_rs
::{
config
::
registry
::{
Registry
,
SelectionStrategy
},
coresight
::
memory
::
MI
,
...
...
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