app.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "run_config": {
  3. "target" : "hardware",
  4. "hardware" : {
  5. "baudrate": 115200,
  6. "timeout": 60
  7. },
  8. "qemu": {
  9. "qemu32": "qemu-system-riscv32",
  10. "qemu64": "qemu-system-riscv64",
  11. "timeout": 60
  12. },
  13. "ncycm": {
  14. "timeout": 1200
  15. }
  16. },
  17. "parallel" : "-j",
  18. "build_target": "clean all",
  19. "build_config": {
  20. },
  21. "checks": {
  22. "PASS": [],
  23. "FAIL": ["MEPC"]
  24. },
  25. "appdirs": [
  26. "application/baremetal/smphello",
  27. "application/baremetal/demo_cidu"
  28. ],
  29. "appdirs_ignore": [
  30. ],
  31. "appconfig": {
  32. "application/baremetal/demo_cidu": {
  33. "build_config" : {},
  34. "checks": {
  35. "PASS": ["[ERROR]__CIDU_PRESENT must be defined as 1 in <Device>.h!", "Core 1 has received interrupt from core 0", "[WARN] SMP & CIDU not present"]
  36. }
  37. },
  38. "application/baremetal/smphello": {
  39. "build_config" : {},
  40. "checks": {
  41. "PASS": ["All harts boot successfully!"]
  42. }
  43. }
  44. }
  45. }