Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. device_type: r8a7743-iwg20d-q7
  2. job_name: test
  3.  
  4. timeouts:
  5. job:
  6. minutes: 100
  7. action:
  8. minutes: 10
  9. connection:
  10. minutes: 5
  11. priority: medium
  12. visibility: public
  13.  
  14. # ACTION_BLOCK
  15. actions:
  16. - deploy:
  17. timeout:
  18. minutes: 5
  19. to: tftp
  20. os: oe
  21. kernel:
  22. url: url
  23. type: uimage
  24. nfsrootfs:
  25. url: url
  26. compression: bz2
  27. dtb:
  28. url: url
  29.  
  30. # BOOT_BLOCK
  31. - boot:
  32. auto_login:
  33. login_prompt: "localhost login:"
  34. username: root
  35. prompts:
  36. - "localhost:~# "
  37. method: u-boot
  38. commands: nfs
  39. timeout:
  40. minutes: 5
  41.  
  42. - test:
  43. timeout:
  44. minutes: 60
  45. tags:
  46. - usb
  47. definitions:
  48. - from: inline
  49. repository:
  50. metadata:
  51. format: Lava-Test Test Definition 1.0
  52. name: prep-tmp-disk
  53. description: Mount local disk for tmp space
  54. run:
  55. steps:
  56. - export STORAGE_DEV=$(lava-target-storage SATA || lava-target-storage USB || lava-target-storage MMC)
  57. - test -n "${STORAGE_DEV}" || lava-test-raise "STORAGE_DEV not found; job
  58. exit"
  59. - echo "y" | mkfs -t ext4 ${STORAGE_DEV} || lava-test-raise "mkfs -t ext4
  60. ${STORAGE_DEV} failed; job exit"
  61. - mkdir -p /scratch
  62. - mount ${STORAGE_DEV} /scratch && echo "mounted" || lava-test-raise "mount
  63. ${STORAGE_DEV} failed; job exit"
  64. - df -h
  65. - mount
  66. name: prep-tmp-disk
  67. lava-signal: kmsg
  68. path: inline/prep.yaml
  69. - repository: https://github.com/Linaro/test-definitions.git
  70. from: git
  71. path: automated/linux/ltp-open-posix/ltp-open-posix.yaml
  72. name: ltp-open-posix-tests
  73. parameters:
  74. SKIP_INSTALL: 'true'
  75. lava-signal: kmsg
  76. timeout:
  77. minutes: 45
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement