diff options
author | Simon Glass | 2017-05-18 20:09:13 -0600 |
---|---|---|
committer | Simon Glass | 2017-06-01 07:03:09 -0600 |
commit | 34b744beb866c9ae660f2851f9776f80e165d421 (patch) | |
tree | 33aef867d123887f4171a8fd2baa3432a7b1a1dd /arch/sandbox/include | |
parent | a40cc8e12352ee35d095d29125fedd2eb2821228 (diff) |
sandbox: Add a way to reset sandbox state for tests
Running a new test should reset the sandbox state to avoid tests
interferring with each other. Move the existing state-reset code into a
function so it can be used from tests.
Also update the code to reset the SPI devices and adjust the test code to
call it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/include')
-rw-r--r-- | arch/sandbox/include/asm/state.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/sandbox/include/asm/state.h b/arch/sandbox/include/asm/state.h index 987cc7b49dc..617f95291ab 100644 --- a/arch/sandbox/include/asm/state.h +++ b/arch/sandbox/include/asm/state.h @@ -214,6 +214,13 @@ void state_set_skip_delays(bool skip_delays); bool state_get_skip_delays(void); /** + * state_reset_for_test() - Reset ready to re-run tests + * + * This clears out any test state ready for another test run. + */ +void state_reset_for_test(struct sandbox_state *state); + +/** * Initialize the test system state */ int state_init(void); |