How do I test auto clock speed? #321
Answered
by
JakeRoggenbuck
JakeRoggenbuck
asked this question in
Q&A
-
How do I test auto clock speed, unit testes, integration tests, both root and none root tests? |
Beta Was this translation helpful? Give feedback.
Answered by
JakeRoggenbuck
Jun 10, 2022
Replies: 1 comment
-
Some information can be found in our CONTRIBUTING.md guide about running the tests. Make sure to run the tests in both root and none root environments like so, cargo build && ./target/debug/acs monit -c
cargo build && ./target/debug/acs run -c
cargo build && sudo ./target/debug/acs monit -c
cargo build && sudo ./target/debug/acs run -c Note that the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
JakeRoggenbuck
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Some information can be found in our CONTRIBUTING.md guide about running the tests.
Make sure to run the tests in both root and none root environments like so,
Note that the
-c
flag will show the commit of the current version that was compiled to allow testers to be confident in the tests they have conducted, and for the reviewers to validate that the test is new.