app.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "run_config": {
  3. "target" : "hardware",
  4. "hardware" : {
  5. "baudrate": 115200,
  6. "timeout": 180
  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. "copy_objects": true,
  18. "build_target": "clean all",
  19. "build_config": {
  20. },
  21. "parallel" : "-j",
  22. "checks": {
  23. "PASS": [],
  24. "FAIL": ["MEPC"]
  25. },
  26. "appdirs": [
  27. "application/baremetal/benchmark"
  28. ],
  29. "appdirs_ignore": [
  30. "application/baremetal/dsp_examples",
  31. "application/baremetal/Internal"
  32. ],
  33. "appconfig": {
  34. "application/baremetal/benchmark/dhrystone": {
  35. "build_config" : {},
  36. "checks": {
  37. "PASS": ["CSV, Dhrystone"]
  38. }
  39. },
  40. "application/baremetal/benchmark/whetstone": {
  41. "build_config" : {},
  42. "checks": {
  43. "PASS": ["CSV, Whetstone"]
  44. }
  45. },
  46. "application/baremetal/benchmark/dhrystone_v2.2": {
  47. "build_config" : {},
  48. "checks": {
  49. "PASS": ["CSV, Dhrystone_v2.2"]
  50. }
  51. },
  52. "application/baremetal/benchmark/whetstone_v1.2": {
  53. "build_config" : {},
  54. "checks": {
  55. "PASS": ["CSV, Whetstone_v1.2"]
  56. }
  57. },
  58. "application/baremetal/benchmark/coremark": {
  59. "build_config" : {},
  60. "checks": {
  61. "PASS": ["CSV, CoreMark"]
  62. }
  63. }
  64. }
  65. }