makefile-tests 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281
  1. ## Copyright (C) 2017 Jeremiah Orians
  2. ## Copyright (C) 2020-2021 deesix <deesix@tuta.io>
  3. ## This file is part of M2-Planet.
  4. ##
  5. ## M2-Planet is free software: you can redistribute it and/or modify
  6. ## it under the terms of the GNU General Public License as published by
  7. ## the Free Software Foundation, either version 3 of the License, or
  8. ## (at your option) any later version.
  9. ##
  10. ## M2-Planet is distributed in the hope that it will be useful,
  11. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. ## GNU General Public License for more details.
  14. ##
  15. ## You should have received a copy of the GNU General Public License
  16. ## along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
  17. # Prevent rebuilding
  18. VPATH = bin:test:test/results
  19. all: test
  20. # tests
  21. test: aarch64-tests amd64-tests knight-posix-tests knight-native-tests armv7l-tests x86-tests riscv32-tests riscv64-tests | results
  22. aarch64-tests: \
  23. test0000-aarch64-binary \
  24. test0001-aarch64-binary \
  25. test0002-aarch64-binary \
  26. test0003-aarch64-binary \
  27. test0004-aarch64-binary \
  28. test0005-aarch64-binary \
  29. test0006-aarch64-binary \
  30. test0007-aarch64-binary \
  31. test0008-aarch64-binary \
  32. test0009-aarch64-binary \
  33. test0010-aarch64-binary \
  34. test0011-aarch64-binary \
  35. test0012-aarch64-binary \
  36. test0013-aarch64-binary \
  37. test0014-aarch64-binary \
  38. test0015-aarch64-binary \
  39. test0016-aarch64-binary \
  40. test0017-aarch64-binary \
  41. test0018-aarch64-binary \
  42. test0019-aarch64-binary \
  43. test0020-aarch64-binary \
  44. test0021-aarch64-binary \
  45. test0022-aarch64-binary \
  46. test0023-aarch64-binary \
  47. test0024-aarch64-binary \
  48. test0025-aarch64-binary \
  49. test0026-aarch64-binary \
  50. test0027-aarch64-binary \
  51. test0028-aarch64-binary \
  52. test0029-aarch64-binary \
  53. test0030-aarch64-binary \
  54. test0031-aarch64-binary \
  55. test0032-aarch64-binary \
  56. test0033-aarch64-binary \
  57. test0100-aarch64-binary \
  58. test0101-aarch64-binary \
  59. test0102-aarch64-binary \
  60. test0103-aarch64-binary \
  61. test0104-aarch64-binary \
  62. test0105-aarch64-binary \
  63. test0106-aarch64-binary \
  64. test1000-aarch64-binary | results
  65. amd64-tests: \
  66. test0000-amd64-binary \
  67. test0001-amd64-binary \
  68. test0002-amd64-binary \
  69. test0003-amd64-binary \
  70. test0004-amd64-binary \
  71. test0005-amd64-binary \
  72. test0006-amd64-binary \
  73. test0007-amd64-binary \
  74. test0008-amd64-binary \
  75. test0009-amd64-binary \
  76. test0010-amd64-binary \
  77. test0011-amd64-binary \
  78. test0012-amd64-binary \
  79. test0013-amd64-binary \
  80. test0014-amd64-binary \
  81. test0015-amd64-binary \
  82. test0016-amd64-binary \
  83. test0017-amd64-binary \
  84. test0018-amd64-binary \
  85. test0019-amd64-binary \
  86. test0020-amd64-binary \
  87. test0021-amd64-binary \
  88. test0022-amd64-binary \
  89. test0023-amd64-binary \
  90. test0024-amd64-binary \
  91. test0025-amd64-binary \
  92. test0026-amd64-binary \
  93. test0027-amd64-binary \
  94. test0028-amd64-binary \
  95. test0029-amd64-binary \
  96. test0030-amd64-binary \
  97. test0031-amd64-binary \
  98. test0032-amd64-binary \
  99. test0033-amd64-binary \
  100. test0100-amd64-binary \
  101. test0101-amd64-binary \
  102. test0102-amd64-binary \
  103. test0103-amd64-binary \
  104. test0104-amd64-binary \
  105. test0105-amd64-binary \
  106. test0106-amd64-binary \
  107. test1000-amd64-binary | results
  108. knight-posix-tests: \
  109. test0000-knight-posix-binary \
  110. test0001-knight-posix-binary \
  111. test0002-knight-posix-binary \
  112. test0003-knight-posix-binary \
  113. test0004-knight-posix-binary \
  114. test0005-knight-posix-binary \
  115. test0006-knight-posix-binary \
  116. test0007-knight-posix-binary \
  117. test0008-knight-posix-binary \
  118. test0009-knight-posix-binary \
  119. test0010-knight-posix-binary \
  120. test0011-knight-posix-binary \
  121. test0012-knight-posix-binary \
  122. test0013-knight-posix-binary \
  123. test0014-knight-posix-binary \
  124. test0015-knight-posix-binary \
  125. test0016-knight-posix-binary \
  126. test0017-knight-posix-binary \
  127. test0018-knight-posix-binary \
  128. test0019-knight-posix-binary \
  129. test0020-knight-posix-binary \
  130. test0021-knight-posix-binary \
  131. test0022-knight-posix-binary \
  132. test0023-knight-posix-binary \
  133. test0024-knight-posix-binary \
  134. test0028-knight-posix-binary \
  135. test0029-knight-posix-binary \
  136. test0030-knight-posix-binary \
  137. test0031-knight-posix-binary \
  138. test0032-knight-posix-binary \
  139. test0033-knight-posix-binary \
  140. test0100-knight-posix-binary \
  141. test0101-knight-posix-binary \
  142. test0102-knight-posix-binary \
  143. test0103-knight-posix-binary \
  144. test0106-knight-posix-binary \
  145. test1000-knight-posix-binary | results
  146. knight-native-tests: \
  147. test0000-knight-native-binary\
  148. test0001-knight-native-binary\
  149. test0002-knight-native-binary\
  150. test0003-knight-native-binary\
  151. test0004-knight-native-binary\
  152. test0005-knight-native-binary\
  153. test0006-knight-native-binary\
  154. test0007-knight-native-binary\
  155. test0008-knight-native-binary\
  156. test0009-knight-native-binary\
  157. test0010-knight-native-binary\
  158. test0011-knight-native-binary\
  159. test0012-knight-native-binary\
  160. test0013-knight-native-binary\
  161. test0017-knight-native-binary\
  162. test0018-knight-native-binary\
  163. test0020-knight-native-binary\
  164. test0024-knight-native-binary\
  165. test0028-knight-native-binary\
  166. test0030-knight-native-binary\
  167. test0106-knight-native-binary | results
  168. armv7l-tests: \
  169. test0000-armv7l-binary \
  170. test0001-armv7l-binary \
  171. test0002-armv7l-binary \
  172. test0003-armv7l-binary \
  173. test0004-armv7l-binary \
  174. test0005-armv7l-binary \
  175. test0006-armv7l-binary \
  176. test0007-armv7l-binary \
  177. test0008-armv7l-binary \
  178. test0009-armv7l-binary \
  179. test0010-armv7l-binary \
  180. test0011-armv7l-binary \
  181. test0012-armv7l-binary \
  182. test0013-armv7l-binary \
  183. test0014-armv7l-binary \
  184. test0015-armv7l-binary \
  185. test0016-armv7l-binary \
  186. test0017-armv7l-binary \
  187. test0018-armv7l-binary \
  188. test0019-armv7l-binary \
  189. test0020-armv7l-binary \
  190. test0021-armv7l-binary \
  191. test0022-armv7l-binary \
  192. test0023-armv7l-binary \
  193. test0024-armv7l-binary \
  194. test0025-armv7l-binary \
  195. test0026-armv7l-binary \
  196. test0027-armv7l-binary \
  197. test0028-armv7l-binary \
  198. test0029-armv7l-binary \
  199. test0030-armv7l-binary \
  200. test0031-armv7l-binary \
  201. test0032-armv7l-binary \
  202. test0033-armv7l-binary \
  203. test0100-armv7l-binary \
  204. test0101-armv7l-binary \
  205. test0102-armv7l-binary \
  206. test0103-armv7l-binary \
  207. test0104-armv7l-binary \
  208. test0105-armv7l-binary \
  209. test0106-armv7l-binary \
  210. test1000-armv7l-binary | results
  211. x86-tests: \
  212. test0000-x86-binary \
  213. test0001-x86-binary \
  214. test0002-x86-binary \
  215. test0003-x86-binary \
  216. test0004-x86-binary \
  217. test0005-x86-binary \
  218. test0006-x86-binary \
  219. test0007-x86-binary \
  220. test0008-x86-binary \
  221. test0009-x86-binary \
  222. test0010-x86-binary \
  223. test0011-x86-binary \
  224. test0012-x86-binary \
  225. test0013-x86-binary \
  226. test0014-x86-binary \
  227. test0015-x86-binary \
  228. test0016-x86-binary \
  229. test0017-x86-binary \
  230. test0018-x86-binary \
  231. test0019-x86-binary \
  232. test0020-x86-binary \
  233. test0021-x86-binary \
  234. test0022-x86-binary \
  235. test0023-x86-binary \
  236. test0024-x86-binary \
  237. test0025-x86-binary \
  238. test0026-x86-binary \
  239. test0027-x86-binary \
  240. test0028-x86-binary \
  241. test0029-x86-binary \
  242. test0030-x86-binary \
  243. test0031-x86-binary \
  244. test0032-x86-binary \
  245. test0033-x86-binary \
  246. test0100-x86-binary \
  247. test0101-x86-binary \
  248. test0102-x86-binary \
  249. test0103-x86-binary \
  250. test0104-x86-binary \
  251. test0105-x86-binary \
  252. test0106-x86-binary \
  253. test1000-x86-binary | results
  254. riscv32-tests: \
  255. test0000-riscv32-binary \
  256. test0001-riscv32-binary \
  257. test0002-riscv32-binary \
  258. test0003-riscv32-binary \
  259. test0004-riscv32-binary \
  260. test0005-riscv32-binary \
  261. test0006-riscv32-binary \
  262. test0007-riscv32-binary \
  263. test0008-riscv32-binary \
  264. test0009-riscv32-binary \
  265. test0010-riscv32-binary \
  266. test0011-riscv32-binary \
  267. test0012-riscv32-binary \
  268. test0013-riscv32-binary \
  269. test0014-riscv32-binary \
  270. test0015-riscv32-binary \
  271. test0016-riscv32-binary \
  272. test0017-riscv32-binary \
  273. test0018-riscv32-binary \
  274. test0019-riscv32-binary \
  275. test0020-riscv32-binary \
  276. test0021-riscv32-binary \
  277. test0022-riscv32-binary \
  278. test0023-riscv32-binary \
  279. test0024-riscv32-binary \
  280. test0025-riscv32-binary \
  281. test0026-riscv32-binary \
  282. test0027-riscv32-binary \
  283. test0028-riscv32-binary \
  284. test0029-riscv32-binary \
  285. test0030-riscv32-binary \
  286. test0031-riscv32-binary \
  287. test0032-riscv32-binary \
  288. test0033-riscv32-binary \
  289. test0100-riscv32-binary \
  290. test0101-riscv32-binary \
  291. test0102-riscv32-binary \
  292. test0103-riscv32-binary \
  293. test0104-riscv32-binary \
  294. test0105-riscv32-binary \
  295. test0106-riscv32-binary \
  296. test1000-riscv32-binary | results
  297. riscv64-tests: \
  298. test0000-riscv64-binary \
  299. test0001-riscv64-binary \
  300. test0002-riscv64-binary \
  301. test0003-riscv64-binary \
  302. test0004-riscv64-binary \
  303. test0005-riscv64-binary \
  304. test0006-riscv64-binary \
  305. test0007-riscv64-binary \
  306. test0008-riscv64-binary \
  307. test0009-riscv64-binary \
  308. test0010-riscv64-binary \
  309. test0011-riscv64-binary \
  310. test0012-riscv64-binary \
  311. test0013-riscv64-binary \
  312. test0014-riscv64-binary \
  313. test0015-riscv64-binary \
  314. test0016-riscv64-binary \
  315. test0017-riscv64-binary \
  316. test0018-riscv64-binary \
  317. test0019-riscv64-binary \
  318. test0020-riscv64-binary \
  319. test0021-riscv64-binary \
  320. test0022-riscv64-binary \
  321. test0023-riscv64-binary \
  322. test0024-riscv64-binary \
  323. test0025-riscv64-binary \
  324. test0026-riscv64-binary \
  325. test0027-riscv64-binary \
  326. test0028-riscv64-binary \
  327. test0029-riscv64-binary \
  328. test0030-riscv64-binary \
  329. test0031-riscv64-binary \
  330. test0032-riscv64-binary \
  331. test0033-riscv64-binary \
  332. test0100-riscv64-binary \
  333. test0101-riscv64-binary \
  334. test0102-riscv64-binary \
  335. test0103-riscv64-binary \
  336. test0104-riscv64-binary \
  337. test0105-riscv64-binary \
  338. test0106-riscv64-binary \
  339. test1000-riscv64-binary | results
  340. test0000-riscv32-binary: M2-Planet | results
  341. test/test0000/run_test.sh riscv32
  342. test0001-riscv32-binary: M2-Planet | results
  343. test/test0001/run_test.sh riscv32
  344. test0002-riscv32-binary: M2-Planet | results
  345. test/test0002/run_test.sh riscv32
  346. test0003-riscv32-binary: M2-Planet | results
  347. test/test0003/run_test.sh riscv32
  348. test0004-riscv32-binary: M2-Planet | results
  349. test/test0004/run_test.sh riscv32
  350. test0005-riscv32-binary: M2-Planet | results
  351. test/test0005/run_test.sh riscv32
  352. test0006-riscv32-binary: M2-Planet | results
  353. test/test0006/run_test.sh riscv32
  354. test0007-riscv32-binary: M2-Planet | results
  355. test/test0007/run_test.sh riscv32
  356. test0008-riscv32-binary: M2-Planet | results
  357. test/test0008/run_test.sh riscv32
  358. test0009-riscv32-binary: M2-Planet | results
  359. test/test0009/run_test.sh riscv32
  360. test0010-riscv32-binary: M2-Planet | results
  361. test/test0010/run_test.sh riscv32
  362. test0011-riscv32-binary: M2-Planet | results
  363. test/test0011/run_test.sh riscv32
  364. test0012-riscv32-binary: M2-Planet | results
  365. test/test0012/run_test.sh riscv32
  366. test0013-riscv32-binary: M2-Planet | results
  367. test/test0013/run_test.sh riscv32
  368. test0014-riscv32-binary: M2-Planet | results
  369. test/test0014/run_test.sh riscv32
  370. test0015-riscv32-binary: M2-Planet | results
  371. test/test0015/run_test.sh riscv32
  372. test0016-riscv32-binary: M2-Planet | results
  373. test/test0016/run_test.sh riscv32
  374. test0017-riscv32-binary: M2-Planet | results
  375. test/test0017/run_test.sh riscv32
  376. test0018-riscv32-binary: M2-Planet | results
  377. test/test0018/run_test.sh riscv32
  378. test0019-riscv32-binary: M2-Planet | results
  379. test/test0019/run_test.sh riscv32
  380. test0020-riscv32-binary: M2-Planet | results
  381. test/test0020/run_test.sh riscv32
  382. test0021-riscv32-binary: M2-Planet | results
  383. test/test0021/run_test.sh riscv32
  384. test0022-riscv32-binary: M2-Planet | results
  385. test/test0022/run_test.sh riscv32
  386. test0023-riscv32-binary: M2-Planet | results
  387. test/test0023/run_test.sh riscv32
  388. test0024-riscv32-binary: M2-Planet | results
  389. test/test0024/run_test.sh riscv32
  390. test0025-riscv32-binary: M2-Planet | results
  391. test/test0025/run_test.sh riscv32
  392. test0026-riscv32-binary: M2-Planet | results
  393. test/test0026/run_test.sh riscv32
  394. test0027-riscv32-binary: M2-Planet | results
  395. test/test0027/run_test.sh riscv32
  396. test0028-riscv32-binary: M2-Planet | results
  397. test/test0028/run_test.sh riscv32
  398. test0029-riscv32-binary: M2-Planet | results
  399. test/test0029/run_test.sh riscv32
  400. test0030-riscv32-binary: M2-Planet | results
  401. test/test0030/run_test.sh riscv32
  402. test0031-riscv32-binary: M2-Planet | results
  403. test/test0031/run_test.sh riscv32
  404. test0032-riscv32-binary: M2-Planet | results
  405. test/test0032/run_test.sh riscv32
  406. test0033-riscv32-binary: M2-Planet | results
  407. test/test0033/run_test.sh riscv32
  408. test0100-riscv32-binary: M2-Planet | results
  409. test/test0100/run_test.sh riscv32
  410. test0101-riscv32-binary: M2-Planet | results
  411. test/test0101/run_test.sh riscv32
  412. test0102-riscv32-binary: M2-Planet | results
  413. test/test0102/run_test.sh riscv32
  414. test0103-riscv32-binary: M2-Planet | results
  415. test/test0103/run_test.sh riscv32
  416. test0104-riscv32-binary: M2-Planet | results
  417. test/test0104/run_test.sh riscv32
  418. test0105-riscv32-binary: M2-Planet | results
  419. test/test0105/run_test.sh riscv32
  420. test0106-riscv32-binary: M2-Planet | results
  421. test/test0106/run_test.sh riscv32
  422. test1000-riscv32-binary: M2-Planet | results
  423. test/test1000/hello-riscv32.sh
  424. test0000-riscv64-binary: M2-Planet | results
  425. test/test0000/run_test.sh riscv64
  426. test0001-riscv64-binary: M2-Planet | results
  427. test/test0001/run_test.sh riscv64
  428. test0002-riscv64-binary: M2-Planet | results
  429. test/test0002/run_test.sh riscv64
  430. test0003-riscv64-binary: M2-Planet | results
  431. test/test0003/run_test.sh riscv64
  432. test0004-riscv64-binary: M2-Planet | results
  433. test/test0004/run_test.sh riscv64
  434. test0005-riscv64-binary: M2-Planet | results
  435. test/test0005/run_test.sh riscv64
  436. test0006-riscv64-binary: M2-Planet | results
  437. test/test0006/run_test.sh riscv64
  438. test0007-riscv64-binary: M2-Planet | results
  439. test/test0007/run_test.sh riscv64
  440. test0008-riscv64-binary: M2-Planet | results
  441. test/test0008/run_test.sh riscv64
  442. test0009-riscv64-binary: M2-Planet | results
  443. test/test0009/run_test.sh riscv64
  444. test0010-riscv64-binary: M2-Planet | results
  445. test/test0010/run_test.sh riscv64
  446. test0011-riscv64-binary: M2-Planet | results
  447. test/test0011/run_test.sh riscv64
  448. test0012-riscv64-binary: M2-Planet | results
  449. test/test0012/run_test.sh riscv64
  450. test0013-riscv64-binary: M2-Planet | results
  451. test/test0013/run_test.sh riscv64
  452. test0014-riscv64-binary: M2-Planet | results
  453. test/test0014/run_test.sh riscv64
  454. test0015-riscv64-binary: M2-Planet | results
  455. test/test0015/run_test.sh riscv64
  456. test0016-riscv64-binary: M2-Planet | results
  457. test/test0016/run_test.sh riscv64
  458. test0017-riscv64-binary: M2-Planet | results
  459. test/test0017/run_test.sh riscv64
  460. test0018-riscv64-binary: M2-Planet | results
  461. test/test0018/run_test.sh riscv64
  462. test0019-riscv64-binary: M2-Planet | results
  463. test/test0019/run_test.sh riscv64
  464. test0020-riscv64-binary: M2-Planet | results
  465. test/test0020/run_test.sh riscv64
  466. test0021-riscv64-binary: M2-Planet | results
  467. test/test0021/run_test.sh riscv64
  468. test0022-riscv64-binary: M2-Planet | results
  469. test/test0022/run_test.sh riscv64
  470. test0023-riscv64-binary: M2-Planet | results
  471. test/test0023/run_test.sh riscv64
  472. test0024-riscv64-binary: M2-Planet | results
  473. test/test0024/run_test.sh riscv64
  474. test0025-riscv64-binary: M2-Planet | results
  475. test/test0025/run_test.sh riscv64
  476. test0026-riscv64-binary: M2-Planet | results
  477. test/test0026/run_test.sh riscv64
  478. test0027-riscv64-binary: M2-Planet | results
  479. test/test0027/run_test.sh riscv64
  480. test0028-riscv64-binary: M2-Planet | results
  481. test/test0028/run_test.sh riscv64
  482. test0029-riscv64-binary: M2-Planet | results
  483. test/test0029/run_test.sh riscv64
  484. test0030-riscv64-binary: M2-Planet | results
  485. test/test0030/run_test.sh riscv64
  486. test0031-riscv64-binary: M2-Planet | results
  487. test/test0031/run_test.sh riscv64
  488. test0032-riscv64-binary: M2-Planet | results
  489. test/test0032/run_test.sh riscv64
  490. test0033-riscv64-binary: M2-Planet | results
  491. test/test0033/run_test.sh riscv64
  492. test0100-riscv64-binary: M2-Planet | results
  493. test/test0100/run_test.sh riscv64
  494. test0101-riscv64-binary: M2-Planet | results
  495. test/test0101/run_test.sh riscv64
  496. test0102-riscv64-binary: M2-Planet | results
  497. test/test0102/run_test.sh riscv64
  498. test0103-riscv64-binary: M2-Planet | results
  499. test/test0103/run_test.sh riscv64
  500. test0104-riscv64-binary: M2-Planet | results
  501. test/test0104/run_test.sh riscv64
  502. test0105-riscv64-binary: M2-Planet | results
  503. test/test0105/run_test.sh riscv64
  504. test0106-riscv64-binary: M2-Planet | results
  505. test/test0106/run_test.sh riscv64
  506. test1000-riscv64-binary: M2-Planet | results
  507. test/test1000/hello-riscv64.sh
  508. test0000-aarch64-binary: M2-Planet | results
  509. test/test0000/run_test.sh aarch64
  510. test0001-aarch64-binary: M2-Planet | results
  511. test/test0001/run_test.sh aarch64
  512. test0002-aarch64-binary: M2-Planet | results
  513. test/test0002/run_test.sh aarch64
  514. test0003-aarch64-binary: M2-Planet | results
  515. test/test0003/run_test.sh aarch64
  516. test0004-aarch64-binary: M2-Planet | results
  517. test/test0004/run_test.sh aarch64
  518. test0005-aarch64-binary: M2-Planet | results
  519. test/test0005/run_test.sh aarch64
  520. test0006-aarch64-binary: M2-Planet | results
  521. test/test0006/run_test.sh aarch64
  522. test0007-aarch64-binary: M2-Planet | results
  523. test/test0007/run_test.sh aarch64
  524. test0008-aarch64-binary: M2-Planet | results
  525. test/test0008/run_test.sh aarch64
  526. test0009-aarch64-binary: M2-Planet | results
  527. test/test0009/run_test.sh aarch64
  528. test0010-aarch64-binary: M2-Planet | results
  529. test/test0010/run_test.sh aarch64
  530. test0011-aarch64-binary: M2-Planet | results
  531. test/test0011/run_test.sh aarch64
  532. test0012-aarch64-binary: M2-Planet | results
  533. test/test0012/run_test.sh aarch64
  534. test0013-aarch64-binary: M2-Planet | results
  535. test/test0013/run_test.sh aarch64
  536. test0014-aarch64-binary: M2-Planet | results
  537. test/test0014/run_test.sh aarch64
  538. test0015-aarch64-binary: M2-Planet | results
  539. test/test0015/run_test.sh aarch64
  540. test0016-aarch64-binary: M2-Planet | results
  541. test/test0016/run_test.sh aarch64
  542. test0017-aarch64-binary: M2-Planet | results
  543. test/test0017/run_test.sh aarch64
  544. test0018-aarch64-binary: M2-Planet | results
  545. test/test0018/run_test.sh aarch64
  546. test0019-aarch64-binary: M2-Planet | results
  547. test/test0019/run_test.sh aarch64
  548. test0020-aarch64-binary: M2-Planet | results
  549. test/test0020/run_test.sh aarch64
  550. test0021-aarch64-binary: M2-Planet | results
  551. test/test0021/run_test.sh aarch64
  552. test0022-aarch64-binary: M2-Planet | results
  553. test/test0022/run_test.sh aarch64
  554. test0023-aarch64-binary: M2-Planet | results
  555. test/test0023/run_test.sh aarch64
  556. test0024-aarch64-binary: M2-Planet | results
  557. test/test0024/run_test.sh aarch64
  558. test0025-aarch64-binary: M2-Planet | results
  559. test/test0025/run_test.sh aarch64
  560. test0026-aarch64-binary: M2-Planet | results
  561. test/test0026/run_test.sh aarch64
  562. test0027-aarch64-binary: M2-Planet | results
  563. test/test0027/run_test.sh aarch64
  564. test0028-aarch64-binary: M2-Planet | results
  565. test/test0028/run_test.sh aarch64
  566. test0029-aarch64-binary: M2-Planet | results
  567. test/test0029/run_test.sh aarch64
  568. test0030-aarch64-binary: M2-Planet | results
  569. test/test0030/run_test.sh aarch64
  570. test0031-aarch64-binary: M2-Planet | results
  571. test/test0031/run_test.sh aarch64
  572. test0032-aarch64-binary: M2-Planet | results
  573. test/test0032/run_test.sh aarch64
  574. test0033-aarch64-binary: M2-Planet | results
  575. test/test0033/run_test.sh aarch64
  576. test0100-aarch64-binary: M2-Planet | results
  577. test/test0100/run_test.sh aarch64
  578. test0101-aarch64-binary: M2-Planet | results
  579. test/test0101/run_test.sh aarch64
  580. test0102-aarch64-binary: M2-Planet | results
  581. test/test0102/run_test.sh aarch64
  582. test0103-aarch64-binary: M2-Planet | results
  583. test/test0103/run_test.sh aarch64
  584. test0104-aarch64-binary: M2-Planet | results
  585. test/test0104/run_test.sh aarch64
  586. test0105-aarch64-binary: M2-Planet | results
  587. test/test0105/run_test.sh aarch64
  588. test0106-aarch64-binary: M2-Planet | results
  589. test/test0106/run_test.sh aarch64
  590. test1000-aarch64-binary: M2-Planet | results
  591. test/test1000/hello-aarch64.sh
  592. test0000-amd64-binary: M2-Planet | results
  593. test/test0000/run_test.sh amd64
  594. test0001-amd64-binary: M2-Planet | results
  595. test/test0001/run_test.sh amd64
  596. test0002-amd64-binary: M2-Planet | results
  597. test/test0002/run_test.sh amd64
  598. test0003-amd64-binary: M2-Planet | results
  599. test/test0003/run_test.sh amd64
  600. test0004-amd64-binary: M2-Planet | results
  601. test/test0004/run_test.sh amd64
  602. test0005-amd64-binary: M2-Planet | results
  603. test/test0005/run_test.sh amd64
  604. test0006-amd64-binary: M2-Planet | results
  605. test/test0006/run_test.sh amd64
  606. test0007-amd64-binary: M2-Planet | results
  607. test/test0007/run_test.sh amd64
  608. test0008-amd64-binary: M2-Planet | results
  609. test/test0008/run_test.sh amd64
  610. test0009-amd64-binary: M2-Planet | results
  611. test/test0009/run_test.sh amd64
  612. test0010-amd64-binary: M2-Planet | results
  613. test/test0010/run_test.sh amd64
  614. test0011-amd64-binary: M2-Planet | results
  615. test/test0011/run_test.sh amd64
  616. test0012-amd64-binary: M2-Planet | results
  617. test/test0012/run_test.sh amd64
  618. test0013-amd64-binary: M2-Planet | results
  619. test/test0013/run_test.sh amd64
  620. test0014-amd64-binary: M2-Planet | results
  621. test/test0014/run_test.sh amd64
  622. test0015-amd64-binary: M2-Planet | results
  623. test/test0015/run_test.sh amd64
  624. test0016-amd64-binary: M2-Planet | results
  625. test/test0016/run_test.sh amd64
  626. test0017-amd64-binary: M2-Planet | results
  627. test/test0017/run_test.sh amd64
  628. test0018-amd64-binary: M2-Planet | results
  629. test/test0018/run_test.sh amd64
  630. test0019-amd64-binary: M2-Planet | results
  631. test/test0019/run_test.sh amd64
  632. test0020-amd64-binary: M2-Planet | results
  633. test/test0020/run_test.sh amd64
  634. test0021-amd64-binary: M2-Planet | results
  635. test/test0021/run_test.sh amd64
  636. test0022-amd64-binary: M2-Planet | results
  637. test/test0022/run_test.sh amd64
  638. test0023-amd64-binary: M2-Planet | results
  639. test/test0023/run_test.sh amd64
  640. test0024-amd64-binary: M2-Planet | results
  641. test/test0024/run_test.sh amd64
  642. test0025-amd64-binary: M2-Planet | results
  643. test/test0025/run_test.sh amd64
  644. test0026-amd64-binary: M2-Planet | results
  645. test/test0026/run_test.sh amd64
  646. test0027-amd64-binary: M2-Planet | results
  647. test/test0027/run_test.sh amd64
  648. test0028-amd64-binary: M2-Planet | results
  649. test/test0028/run_test.sh amd64
  650. test0029-amd64-binary: M2-Planet | results
  651. test/test0029/run_test.sh amd64
  652. test0030-amd64-binary: M2-Planet | results
  653. test/test0030/run_test.sh amd64
  654. test0031-amd64-binary: M2-Planet | results
  655. test/test0031/run_test.sh amd64
  656. test0032-amd64-binary: M2-Planet | results
  657. test/test0032/run_test.sh amd64
  658. test0033-amd64-binary: M2-Planet | results
  659. test/test0033/run_test.sh amd64
  660. test0100-amd64-binary: M2-Planet | results
  661. test/test0100/run_test.sh amd64
  662. test0101-amd64-binary: M2-Planet | results
  663. test/test0101/run_test.sh amd64
  664. test0102-amd64-binary: M2-Planet | results
  665. test/test0102/run_test.sh amd64
  666. test0103-amd64-binary: M2-Planet | results
  667. test/test0103/run_test.sh amd64
  668. test0104-amd64-binary: M2-Planet | results
  669. test/test0104/run_test.sh amd64
  670. test0105-amd64-binary: M2-Planet | results
  671. test/test0105/run_test.sh amd64
  672. test0106-amd64-binary: M2-Planet | results
  673. test/test0106/run_test.sh amd64
  674. test1000-amd64-binary: M2-Planet | results
  675. test/test1000/hello-amd64.sh
  676. test0000-knight-posix-binary: M2-Planet | results
  677. test/test0000/hello-knight-posix.sh
  678. test0001-knight-posix-binary: M2-Planet | results
  679. test/test0001/hello-knight-posix.sh
  680. test0002-knight-posix-binary: M2-Planet | results
  681. test/test0002/hello-knight-posix.sh
  682. test0003-knight-posix-binary: M2-Planet | results
  683. test/test0003/hello-knight-posix.sh
  684. test0004-knight-posix-binary: M2-Planet | results
  685. test/test0004/hello-knight-posix.sh
  686. test0005-knight-posix-binary: M2-Planet | results
  687. test/test0005/hello-knight-posix.sh
  688. test0006-knight-posix-binary: M2-Planet | results
  689. test/test0006/hello-knight-posix.sh
  690. test0007-knight-posix-binary: M2-Planet | results
  691. test/test0007/hello-knight-posix.sh
  692. test0008-knight-posix-binary: M2-Planet | results
  693. test/test0008/hello-knight-posix.sh
  694. test0009-knight-posix-binary: M2-Planet | results
  695. test/test0009/hello-knight-posix.sh
  696. test0010-knight-posix-binary: M2-Planet | results
  697. test/test0010/hello-knight-posix.sh
  698. test0011-knight-posix-binary: M2-Planet | results
  699. test/test0011/hello-knight-posix.sh
  700. test0012-knight-posix-binary: M2-Planet | results
  701. test/test0012/hello-knight-posix.sh
  702. test0013-knight-posix-binary: M2-Planet | results
  703. test/test0013/hello-knight-posix.sh
  704. test0014-knight-posix-binary: M2-Planet | results
  705. test/test0014/hello-knight-posix.sh
  706. test0015-knight-posix-binary: M2-Planet | results
  707. test/test0015/hello-knight-posix.sh
  708. test0016-knight-posix-binary: M2-Planet | results
  709. test/test0016/hello-knight-posix.sh
  710. test0017-knight-posix-binary: M2-Planet | results
  711. test/test0017/hello-knight-posix.sh
  712. test0018-knight-posix-binary: M2-Planet | results
  713. test/test0018/hello-knight-posix.sh
  714. test0019-knight-posix-binary: M2-Planet | results
  715. test/test0019/hello-knight-posix.sh
  716. test0020-knight-posix-binary: M2-Planet | results
  717. test/test0020/hello-knight-posix.sh
  718. test0021-knight-posix-binary: M2-Planet | results
  719. test/test0021/hello-knight-posix.sh
  720. test0022-knight-posix-binary: M2-Planet | results
  721. test/test0022/hello-knight-posix.sh
  722. test0023-knight-posix-binary: M2-Planet | results
  723. test/test0023/hello-knight-posix.sh
  724. test0024-knight-posix-binary: M2-Planet | results
  725. test/test0024/hello-knight-posix.sh
  726. test0028-knight-posix-binary: M2-Planet | results
  727. test/test0028/hello-knight-posix.sh
  728. test0029-knight-posix-binary: M2-Planet | results
  729. test/test0029/hello-knight-posix.sh
  730. test0030-knight-posix-binary: M2-Planet | results
  731. test/test0030/hello-knight-posix.sh
  732. test0031-knight-posix-binary: M2-Planet | results
  733. test/test0031/hello-knight-posix.sh
  734. test0032-knight-posix-binary: M2-Planet | results
  735. test/test0032/hello-knight-posix.sh
  736. test0033-knight-posix-binary: M2-Planet | results
  737. test/test0033/hello-knight-posix.sh
  738. test0100-knight-posix-binary: M2-Planet | results
  739. test/test0100/hello-knight-posix.sh
  740. test0101-knight-posix-binary: M2-Planet | results
  741. test/test0101/hello-knight-posix.sh
  742. test0102-knight-posix-binary: M2-Planet | results
  743. test/test0102/hello-knight-posix.sh
  744. test0103-knight-posix-binary: M2-Planet | results
  745. test/test0103/hello-knight-posix.sh
  746. test0106-knight-posix-binary: M2-Planet | results
  747. test/test0106/hello-knight-posix.sh
  748. test1000-knight-posix-binary: M2-Planet | results
  749. test/test1000/hello-knight-posix.sh
  750. test0000-knight-native-binary: M2-Planet | results
  751. test/test0000/hello-knight-native.sh
  752. test0001-knight-native-binary: M2-Planet | results
  753. test/test0001/hello-knight-native.sh
  754. test0002-knight-native-binary: M2-Planet | results
  755. test/test0002/hello-knight-native.sh
  756. test0003-knight-native-binary: M2-Planet | results
  757. test/test0003/hello-knight-native.sh
  758. test0004-knight-native-binary: M2-Planet | results
  759. test/test0004/hello-knight-native.sh
  760. test0005-knight-native-binary: M2-Planet | results
  761. test/test0005/hello-knight-native.sh
  762. test0006-knight-native-binary: M2-Planet | results
  763. test/test0006/hello-knight-native.sh
  764. test0007-knight-native-binary: M2-Planet | results
  765. test/test0007/hello-knight-native.sh
  766. test0008-knight-native-binary: M2-Planet | results
  767. test/test0008/hello-knight-native.sh
  768. test0009-knight-native-binary: M2-Planet | results
  769. test/test0009/hello-knight-native.sh
  770. test0010-knight-native-binary: M2-Planet | results
  771. test/test0010/hello-knight-native.sh
  772. test0011-knight-native-binary: M2-Planet | results
  773. test/test0011/hello-knight-native.sh
  774. test0012-knight-native-binary: M2-Planet | results
  775. test/test0012/hello-knight-native.sh
  776. test0013-knight-native-binary: M2-Planet | results
  777. test/test0013/hello-knight-native.sh
  778. test0017-knight-native-binary: M2-Planet | results
  779. test/test0017/hello-knight-native.sh
  780. test0018-knight-native-binary: M2-Planet | results
  781. test/test0018/hello-knight-native.sh
  782. test0020-knight-native-binary: M2-Planet | results
  783. test/test0020/hello-knight-native.sh
  784. test0024-knight-native-binary: M2-Planet | results
  785. test/test0024/hello-knight-native.sh
  786. test0028-knight-native-binary: M2-Planet | results
  787. test/test0028/hello-knight-native.sh
  788. test0030-knight-native-binary: M2-Planet | results
  789. test/test0030/hello-knight-native.sh
  790. test0106-knight-native-binary: M2-Planet | results
  791. test/test0106/hello-knight-native.sh
  792. test0000-armv7l-binary: M2-Planet | results
  793. test/test0000/run_test.sh armv7l
  794. test0001-armv7l-binary: M2-Planet | results
  795. test/test0001/run_test.sh armv7l
  796. test0002-armv7l-binary: M2-Planet | results
  797. test/test0002/run_test.sh armv7l
  798. test0003-armv7l-binary: M2-Planet | results
  799. test/test0003/run_test.sh armv7l
  800. test0004-armv7l-binary: M2-Planet | results
  801. test/test0004/run_test.sh armv7l
  802. test0005-armv7l-binary: M2-Planet | results
  803. test/test0005/run_test.sh armv7l
  804. test0006-armv7l-binary: M2-Planet | results
  805. test/test0006/run_test.sh armv7l
  806. test0007-armv7l-binary: M2-Planet | results
  807. test/test0007/run_test.sh armv7l
  808. test0008-armv7l-binary: M2-Planet | results
  809. test/test0008/run_test.sh armv7l
  810. test0009-armv7l-binary: M2-Planet | results
  811. test/test0009/run_test.sh armv7l
  812. test0010-armv7l-binary: M2-Planet | results
  813. test/test0010/run_test.sh armv7l
  814. test0011-armv7l-binary: M2-Planet | results
  815. test/test0011/run_test.sh armv7l
  816. test0012-armv7l-binary: M2-Planet | results
  817. test/test0012/run_test.sh armv7l
  818. test0013-armv7l-binary: M2-Planet | results
  819. test/test0013/run_test.sh armv7l
  820. test0014-armv7l-binary: M2-Planet | results
  821. test/test0014/run_test.sh armv7l
  822. test0015-armv7l-binary: M2-Planet | results
  823. test/test0015/run_test.sh armv7l
  824. test0016-armv7l-binary: M2-Planet | results
  825. test/test0016/run_test.sh armv7l
  826. test0017-armv7l-binary: M2-Planet | results
  827. test/test0017/run_test.sh armv7l
  828. test0018-armv7l-binary: M2-Planet | results
  829. test/test0018/run_test.sh armv7l
  830. test0019-armv7l-binary: M2-Planet | results
  831. test/test0019/run_test.sh armv7l
  832. test0020-armv7l-binary: M2-Planet | results
  833. test/test0020/run_test.sh armv7l
  834. test0021-armv7l-binary: M2-Planet | results
  835. test/test0021/run_test.sh armv7l
  836. test0022-armv7l-binary: M2-Planet | results
  837. test/test0022/run_test.sh armv7l
  838. test0023-armv7l-binary: M2-Planet | results
  839. test/test0023/run_test.sh armv7l
  840. test0024-armv7l-binary: M2-Planet | results
  841. test/test0024/run_test.sh armv7l
  842. test0025-armv7l-binary: M2-Planet | results
  843. test/test0025/run_test.sh armv7l
  844. test0026-armv7l-binary: M2-Planet | results
  845. test/test0026/run_test.sh armv7l
  846. test0027-armv7l-binary: M2-Planet | results
  847. test/test0027/run_test.sh armv7l
  848. test0028-armv7l-binary: M2-Planet | results
  849. test/test0028/run_test.sh armv7l
  850. test0029-armv7l-binary: M2-Planet | results
  851. test/test0029/run_test.sh armv7l
  852. test0030-armv7l-binary: M2-Planet | results
  853. test/test0030/run_test.sh armv7l
  854. test0031-armv7l-binary: M2-Planet | results
  855. test/test0031/run_test.sh armv7l
  856. test0032-armv7l-binary: M2-Planet | results
  857. test/test0032/run_test.sh armv7l
  858. test0033-armv7l-binary: M2-Planet | results
  859. test/test0033/run_test.sh armv7l
  860. test0100-armv7l-binary: M2-Planet | results
  861. test/test0100/run_test.sh armv7l
  862. test0101-armv7l-binary: M2-Planet | results
  863. test/test0101/run_test.sh armv7l
  864. test0102-armv7l-binary: M2-Planet | results
  865. test/test0102/run_test.sh armv7l
  866. test0103-armv7l-binary: M2-Planet | results
  867. test/test0103/run_test.sh armv7l
  868. test0104-armv7l-binary: M2-Planet | results
  869. test/test0104/run_test.sh armv7l
  870. test0105-armv7l-binary: M2-Planet | results
  871. test/test0105/run_test.sh armv7l
  872. test0106-armv7l-binary: M2-Planet | results
  873. test/test0106/run_test.sh armv7l
  874. test1000-armv7l-binary: M2-Planet | results
  875. test/test1000/hello-armv7l.sh
  876. test0000-x86-binary: M2-Planet | results
  877. test/test0000/run_test.sh x86
  878. test0001-x86-binary: M2-Planet | results
  879. test/test0001/run_test.sh x86
  880. test0002-x86-binary: M2-Planet | results
  881. test/test0002/run_test.sh x86
  882. test0003-x86-binary: M2-Planet | results
  883. test/test0003/run_test.sh x86
  884. test0004-x86-binary: M2-Planet | results
  885. test/test0004/run_test.sh x86
  886. test0005-x86-binary: M2-Planet | results
  887. test/test0005/run_test.sh x86
  888. test0006-x86-binary: M2-Planet | results
  889. test/test0006/run_test.sh x86
  890. test0007-x86-binary: M2-Planet | results
  891. test/test0007/run_test.sh x86
  892. test0008-x86-binary: M2-Planet | results
  893. test/test0008/run_test.sh x86
  894. test0009-x86-binary: M2-Planet | results
  895. test/test0009/run_test.sh x86
  896. test0010-x86-binary: M2-Planet | results
  897. test/test0010/run_test.sh x86
  898. test0011-x86-binary: M2-Planet | results
  899. test/test0011/run_test.sh x86
  900. test0012-x86-binary: M2-Planet | results
  901. test/test0012/run_test.sh x86
  902. test0013-x86-binary: M2-Planet | results
  903. test/test0013/run_test.sh x86
  904. test0014-x86-binary: M2-Planet | results
  905. test/test0014/run_test.sh x86
  906. test0015-x86-binary: M2-Planet | results
  907. test/test0015/run_test.sh x86
  908. test0016-x86-binary: M2-Planet | results
  909. test/test0016/run_test.sh x86
  910. test0017-x86-binary: M2-Planet | results
  911. test/test0017/run_test.sh x86
  912. test0018-x86-binary: M2-Planet | results
  913. test/test0018/run_test.sh x86
  914. test0019-x86-binary: M2-Planet | results
  915. test/test0019/run_test.sh x86
  916. test0020-x86-binary: M2-Planet | results
  917. test/test0020/run_test.sh x86
  918. test0021-x86-binary: M2-Planet | results
  919. test/test0021/run_test.sh x86
  920. test0022-x86-binary: M2-Planet | results
  921. test/test0022/run_test.sh x86
  922. test0023-x86-binary: M2-Planet | results
  923. test/test0023/run_test.sh x86
  924. test0024-x86-binary: M2-Planet | results
  925. test/test0024/run_test.sh x86
  926. test0025-x86-binary: M2-Planet | results
  927. test/test0025/run_test.sh x86
  928. test0026-x86-binary: M2-Planet | results
  929. test/test0026/run_test.sh x86
  930. test0027-x86-binary: M2-Planet | results
  931. test/test0027/run_test.sh x86
  932. test0028-x86-binary: M2-Planet | results
  933. test/test0028/run_test.sh x86
  934. test0029-x86-binary: M2-Planet | results
  935. test/test0029/run_test.sh x86
  936. test0030-x86-binary: M2-Planet | results
  937. test/test0030/run_test.sh x86
  938. test0031-x86-binary: M2-Planet | results
  939. test/test0031/run_test.sh x86
  940. test0032-x86-binary: M2-Planet | results
  941. test/test0032/run_test.sh x86
  942. test0033-x86-binary: M2-Planet | results
  943. test/test0033/run_test.sh x86
  944. test0100-x86-binary: M2-Planet | results
  945. test/test0100/run_test.sh x86
  946. test0101-x86-binary: M2-Planet | results
  947. test/test0101/run_test.sh x86
  948. test0102-x86-binary: M2-Planet | results
  949. test/test0102/run_test.sh x86
  950. test0103-x86-binary: M2-Planet | results
  951. test/test0103/run_test.sh x86
  952. test0104-x86-binary: M2-Planet | results
  953. test/test0104/run_test.sh x86
  954. test0105-x86-binary: M2-Planet | results
  955. test/test0105/run_test.sh x86
  956. test0106-x86-binary: M2-Planet | results
  957. test/test0106/run_test.sh x86
  958. test1000-x86-binary: M2-Planet | results
  959. test/test1000/hello-x86.sh