README 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. Flashrom Testing
  2. Overall idea:
  3. - Break tests into small chunks
  4. - Have a single program that does generic setup and shutdown functions
  5. - Executes specified tests in a simple loop
  6. Dependencies:
  7. - uuencode
  8. - diff
  9. - A version of flashrom which is installed in $PATH. This is assumed to be a
  10. "good" version of Flashrom and will be used to obtain a backup copy of the
  11. ROM image at the beginning, and restore the image at the end.
  12. Important environment variables:
  13. FLASHROM: Path to the Flashrom binary to test
  14. FLASHROM_PARAM: Extra parameters to pass into flashrom, such as -p. Do *not*
  15. specify chip operations such as read/write/erase/verify here, as they are
  16. redundant with commands the script executes.
  17. Important global variables:
  18. BACKUP: The backup copy of ROM image which is read before executing any tests,
  19. and restored unconditionally after execution of tests.
  20. Syntax:
  21. ENV_VARS="blah" ./do_tests.sh <test1> <test2>
  22. Example:
  23. FLASHROM="../flashrom" FLASHROM_PARAM="-p internal:bus=spi" ./do_tests foo.sh bar.sh
  24. Each unit test might have its own special requirements, such as extra
  25. environment variables, layout files, etc. Please read the comments at the top
  26. of each unit test to ensure there are no special dependencies.