diff options
-rw-r--r-- | tests/chip.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/chip.c b/tests/chip.c index fd7094cc..798199c3 100644 --- a/tests/chip.c +++ b/tests/chip.c @@ -11,6 +11,18 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. + * + * This file contains tests for operations on flash chip. + * + * Two flash chip test variants are used: + * + * 1) Mock chip state backed by `g_chip_state`. + * Example of test: erase_chip_test_success. + * + * 2) Mock chip operations backed by `dummyflasher` emulation. + * Dummyflasher controls chip state and emulates read/write/unlock/erase. + * `g_chip_state` is NOT used for this type of tests. + * Example of test: erase_chip_with_dummyflasher_test_success. */ #include <include/test.h> |