app.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. },
  14. "build_target": "clean dasm",
  15. "build_config": {
  16. "SOC": "evalsoc"
  17. },
  18. "copy_objects": true,
  19. "checks": {
  20. "PASS": [],
  21. "FAIL": ["MEPC"]
  22. },
  23. "appdirs": [
  24. "application/baremetal/benchmark"
  25. ],
  26. "appdirs_ignore": [
  27. "application/baremetal/dsp_examples",
  28. "application/baremetal/Internal"
  29. ],
  30. "appconfig": {
  31. "application/baremetal/benchmark/dhrystone": {
  32. "build_config" : {},
  33. "checks": {
  34. "PASS": ["1000000/(User_Cycle/Number_Of_Runs)"]
  35. }
  36. },
  37. "application/baremetal/benchmark/whetstone": {
  38. "build_config" : {},
  39. "checks": {
  40. "PASS": ["MWIPS/MHz"]
  41. }
  42. },
  43. "application/baremetal/benchmark/coremark": {
  44. "build_config" : {},
  45. "checks": {
  46. "PASS": ["Iterations*1000000/total_ticks"]
  47. }
  48. },
  49. "application/baremetal/demo_timer": {
  50. "build_config" : {},
  51. "checks": {
  52. "PASS": ["MTimer msip and mtip interrupt test finish and pass"]
  53. }
  54. },
  55. "application/baremetal/helloworld": {
  56. "build_config" : {},
  57. "checks": {
  58. "PASS": ["19: Hello World From Nuclei RISC-V Processor!"]
  59. }
  60. },
  61. "application/baremetal/demo_eclic": {
  62. "build_config" : {},
  63. "checks": {
  64. "PASS": ["software interrupt hit 10 times"]
  65. }
  66. },
  67. "application/baremetal/demo_nice": {
  68. "build_config" : {},
  69. "checks": {
  70. "PASS": ["PASS"],
  71. "FAIL": ["FAIL", "MEPC"]
  72. }
  73. },
  74. "application/baremetal/demo_dsp": {
  75. "build_config" : {},
  76. "checks": {
  77. "PASS": ["all test are passed"],
  78. "FAIL": ["test error apprears", "MEPC"]
  79. }
  80. },
  81. "application/freertos/demo": {
  82. "build_config" : {},
  83. "checks": {
  84. "PASS": ["timers Callback 11"]
  85. }
  86. },
  87. "application/rtthread/demo": {
  88. "build_config" : {},
  89. "checks": {
  90. "PASS": ["Main thread count: 6"]
  91. }
  92. },
  93. "application/rtthread/msh": {
  94. "build_config" : {},
  95. "checks": {
  96. "PASS": ["msh >"]
  97. }
  98. },
  99. "application/ucosii/demo": {
  100. "build_config" : {},
  101. "checks": {
  102. "PASS": ["task3 is running... 10"]
  103. }
  104. },
  105. "test/core": {
  106. "build_config" : {},
  107. "checks": {
  108. "PASS": [", 0 failed"],
  109. "FAIL": ["[FAIL]", "MEPC"]
  110. }
  111. }
  112. }
  113. }