You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Software test, also called application test, can provide integrated test for interrupt. You need to recompile the amtest with specific `AM_TARGET` when you want to change the software target.
229
230
```bash
230
231
# the 'AM_TARGET' option value(default h):
231
232
# h => "hello"
@@ -243,18 +244,26 @@ $ make amTest
243
244
```
244
245
245
246
### Benchmark test
247
+
First, you need to compile the benchmark programs.
246
248
```bash
247
249
$ make coremarkTestBuild
248
250
$ make dhrystoneTestBuild
249
251
$ make microbenchTestBuild
250
252
```
253
+
```bash
254
+
$ make coremakrTest
255
+
$ make dhrystoneTest
256
+
$ make microbenchTest
257
+
```
251
258
252
259
### SoC test
253
260
SoC test is based on ysyxSoC project. SoC test provides more accurate simulation environment for processor design.
254
261
255
262
```bash
256
-
$ make socBuild
257
-
$ make socTest
263
+
$ make CHIP_TARGET=tc_l2 socBuild
264
+
# SOC_APP_TYPE: flash, loader
265
+
# SOC_APP_NAME: hello, memtest, rtthread
266
+
$ make CHIP_TARGET=tc_l2 SOC_APP_TYPE=flash SOC_APP_NAME=hello socTest
0 commit comments