diff options
author | 2023-07-21 14:33:52 +0200 | |
---|---|---|
committer | 2023-07-21 14:33:52 +0200 | |
commit | 5517d54ed0acc6b3a7a57726230c10bcbfa476ed (patch) | |
tree | 005dc6c3c7989e6b772e8edcc28ba93a885a84cb | |
parent | ce12620be0e51f9a8bbe6bb67cfc131201b55f34 (diff) | |
download | cortex-m-5517d54ed0acc6b3a7a57726230c10bcbfa476ed.tar.gz cortex-m-5517d54ed0acc6b3a7a57726230c10bcbfa476ed.tar.zst cortex-m-5517d54ed0acc6b3a7a57726230c10bcbfa476ed.zip |
Add readme with test running clarification
-rw-r--r-- | cortex-m-rt/tests/README.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cortex-m-rt/tests/README.md b/cortex-m-rt/tests/README.md new file mode 100644 index 0000000..1d879fc --- /dev/null +++ b/cortex-m-rt/tests/README.md @@ -0,0 +1,7 @@ +# How to run + +To run the compile tests, use the following command on the root of the project: + +``` +cargo test --package cortex-m-rt --test compiletest --features device +``` |