@port-labs/jq-node-bindings 0.0.13 → 0.0.15-dev1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (453) hide show
  1. package/README.md +6 -1
  2. package/binding.gyp +41 -19
  3. package/configure +1 -1
  4. package/deps/jq/.gitattributes +12 -0
  5. package/deps/jq/AUTHORS +149 -43
  6. package/deps/jq/COPYING +75 -1
  7. package/deps/jq/ChangeLog +2 -2
  8. package/deps/jq/Makefile.am +106 -65
  9. package/deps/jq/NEWS.md +391 -0
  10. package/deps/jq/README.md +54 -52
  11. package/deps/jq/SECURITY.md +7 -0
  12. package/deps/jq/compile-ios.sh +106 -102
  13. package/deps/jq/configure.ac +72 -59
  14. package/deps/jq/docs/Pipfile +14 -0
  15. package/deps/jq/docs/Pipfile.lock +415 -0
  16. package/deps/jq/docs/README.md +15 -14
  17. package/deps/jq/docs/build_manpage.py +251 -0
  18. package/deps/jq/docs/build_mantests.py +21 -0
  19. package/deps/jq/docs/build_website.py +95 -0
  20. package/deps/jq/docs/content/download/default.yml +249 -0
  21. package/deps/jq/docs/content/index.yml +83 -0
  22. package/deps/jq/docs/content/{3.manual/v1.6 → manual/dev}/manual.yml +992 -452
  23. package/deps/jq/docs/content/{3.manual → manual}/v1.3/manual.yml +105 -116
  24. package/deps/jq/docs/content/{3.manual → manual}/v1.4/manual.yml +122 -129
  25. package/deps/jq/docs/content/{3.manual → manual}/v1.5/manual.yml +313 -262
  26. package/deps/jq/docs/content/{3.manual → manual/v1.6}/manual.yml +407 -332
  27. package/deps/jq/docs/content/manual/v1.7/manual.yml +3697 -0
  28. package/deps/jq/docs/content/tutorial/default.yml +337 -0
  29. package/deps/jq/docs/manual_schema.yml +60 -0
  30. package/deps/jq/docs/public/css/style.css +99 -0
  31. package/deps/jq/docs/public/icon.png +0 -0
  32. package/deps/jq/docs/public/icon.svg +1 -0
  33. package/deps/jq/docs/public/jq.svg +1 -0
  34. package/deps/jq/docs/public/js/manual-search.js +31 -49
  35. package/deps/jq/docs/templates/default.html.j2 +31 -0
  36. package/deps/jq/docs/templates/index.html.j2 +58 -0
  37. package/deps/jq/docs/templates/manual.html.j2 +120 -0
  38. package/deps/jq/docs/templates/shared/_footer.html.j2 +14 -0
  39. package/deps/jq/docs/templates/shared/_head.html.j2 +23 -0
  40. package/deps/jq/docs/templates/shared/_navbar.html.j2 +40 -0
  41. package/deps/jq/docs/validate_manual_schema.py +19 -0
  42. package/deps/jq/jq.1.prebuilt +1102 -294
  43. package/deps/jq/jq.spec +2 -3
  44. package/deps/jq/libjq.pc.in +11 -0
  45. package/deps/jq/m4/ax_pthread.m4 +522 -0
  46. package/deps/jq/modules/oniguruma/.travis.yml +17 -0
  47. package/deps/jq/modules/oniguruma/CMakeLists.txt +206 -41
  48. package/deps/jq/modules/oniguruma/COPYING +23 -25
  49. package/deps/jq/modules/oniguruma/HISTORY +368 -23
  50. package/deps/jq/modules/oniguruma/Makefile.am +61 -7
  51. package/deps/jq/modules/oniguruma/README +34 -20
  52. package/deps/jq/modules/oniguruma/README.md +106 -33
  53. package/deps/jq/modules/oniguruma/README_japanese +183 -0
  54. package/deps/jq/modules/oniguruma/autogen.sh +9 -0
  55. package/deps/jq/modules/oniguruma/cmake/Config.cmake.in +4 -0
  56. package/deps/jq/modules/oniguruma/configure.ac +66 -55
  57. package/deps/jq/modules/oniguruma/doc/API +485 -42
  58. package/deps/jq/modules/oniguruma/doc/API.ja +732 -293
  59. package/deps/jq/modules/oniguruma/doc/CALLOUTS.API +397 -0
  60. package/deps/jq/modules/oniguruma/doc/CALLOUTS.API.ja +393 -0
  61. package/deps/jq/modules/oniguruma/doc/CALLOUTS.BUILTIN +95 -0
  62. package/deps/jq/modules/oniguruma/doc/CALLOUTS.BUILTIN.ja +93 -0
  63. package/deps/jq/modules/oniguruma/doc/FAQ +3 -3
  64. package/deps/jq/modules/oniguruma/doc/FAQ.ja +8 -8
  65. package/deps/jq/modules/oniguruma/doc/RE +223 -63
  66. package/deps/jq/modules/oniguruma/doc/RE.ja +420 -265
  67. package/deps/jq/modules/oniguruma/doc/SYNTAX.md +1091 -0
  68. package/deps/jq/modules/oniguruma/doc/UNICODE_PROPERTIES +840 -697
  69. package/deps/jq/modules/oniguruma/harnesses/ascii_compatible.dict +113 -0
  70. package/deps/jq/modules/oniguruma/harnesses/base.c +749 -0
  71. package/deps/jq/modules/oniguruma/harnesses/deluxe.c +206 -0
  72. package/deps/jq/modules/oniguruma/harnesses/dict_conv.py +72 -0
  73. package/deps/jq/modules/oniguruma/harnesses/fuzzer.options +2 -0
  74. package/deps/jq/modules/oniguruma/harnesses/libfuzzer-onig.cpp +45 -0
  75. package/deps/jq/modules/oniguruma/harnesses/regset.c +392 -0
  76. package/deps/jq/modules/oniguruma/index.html +16 -5
  77. package/deps/jq/modules/oniguruma/index_ja.html +16 -5
  78. package/deps/jq/modules/oniguruma/make_win.bat +5 -0
  79. package/deps/jq/modules/oniguruma/make_win32.bat +5 -3
  80. package/deps/jq/modules/oniguruma/make_win64.bat +5 -3
  81. package/deps/jq/modules/oniguruma/onig-config.cmake.in +80 -0
  82. package/deps/jq/modules/oniguruma/onig-config.in +1 -1
  83. package/deps/jq/modules/oniguruma/oniguruma.pc.cmake.in +1 -1
  84. package/deps/jq/modules/oniguruma/oniguruma.pc.in +0 -1
  85. package/deps/jq/modules/oniguruma/sample/CMakeLists.txt +9 -2
  86. package/deps/jq/modules/oniguruma/sample/Makefile.am +24 -5
  87. package/deps/jq/modules/oniguruma/sample/bug_fix.c +13 -51
  88. package/deps/jq/modules/oniguruma/sample/callback_each_match.c +168 -0
  89. package/deps/jq/modules/oniguruma/sample/callout.c +268 -0
  90. package/deps/jq/modules/oniguruma/sample/count.c +125 -0
  91. package/deps/jq/modules/oniguruma/sample/crnl.c +6 -4
  92. package/deps/jq/modules/oniguruma/sample/echo.c +136 -0
  93. package/deps/jq/modules/oniguruma/sample/encode.c +53 -146
  94. package/deps/jq/modules/oniguruma/sample/listcap.c +18 -10
  95. package/deps/jq/modules/oniguruma/sample/names.c +10 -6
  96. package/deps/jq/modules/oniguruma/sample/posix.c +13 -2
  97. package/deps/jq/modules/oniguruma/sample/regset.c +95 -0
  98. package/deps/jq/modules/oniguruma/sample/scan.c +20 -6
  99. package/deps/jq/modules/oniguruma/sample/simple.c +8 -4
  100. package/deps/jq/modules/oniguruma/sample/sql.c +13 -8
  101. package/deps/jq/modules/oniguruma/sample/syntax.c +11 -10
  102. package/deps/jq/modules/oniguruma/sample/user_property.c +12 -7
  103. package/deps/jq/modules/oniguruma/src/Makefile.am +41 -15
  104. package/deps/jq/modules/oniguruma/src/Makefile.windows +196 -183
  105. package/deps/jq/modules/oniguruma/src/ascii.c +64 -7
  106. package/deps/jq/modules/oniguruma/src/big5.c +25 -15
  107. package/deps/jq/modules/oniguruma/src/config.h.cmake.in +7 -22
  108. package/deps/jq/modules/oniguruma/src/config.h.win32 +56 -84
  109. package/deps/jq/modules/oniguruma/src/config.h.win64 +56 -84
  110. package/deps/jq/modules/oniguruma/src/config.h.windows.in +62 -0
  111. package/deps/jq/modules/oniguruma/src/cp1251.c +14 -8
  112. package/deps/jq/modules/oniguruma/src/euc_jp.c +28 -30
  113. package/deps/jq/modules/oniguruma/src/euc_jp_prop.c +25 -32
  114. package/deps/jq/modules/oniguruma/src/euc_jp_prop.gperf +1 -2
  115. package/deps/jq/modules/oniguruma/src/euc_kr.c +27 -15
  116. package/deps/jq/modules/oniguruma/src/euc_tw.c +40 -17
  117. package/deps/jq/modules/oniguruma/src/gb18030.c +177 -119
  118. package/deps/jq/modules/oniguruma/src/gperf_fold_key_conv.py +12 -8
  119. package/deps/jq/modules/oniguruma/src/gperf_unfold_key_conv.py +8 -6
  120. package/deps/jq/modules/oniguruma/src/iso8859_1.c +92 -91
  121. package/deps/jq/modules/oniguruma/src/iso8859_10.c +13 -29
  122. package/deps/jq/modules/oniguruma/src/iso8859_11.c +4 -2
  123. package/deps/jq/modules/oniguruma/src/iso8859_13.c +13 -33
  124. package/deps/jq/modules/oniguruma/src/iso8859_14.c +13 -30
  125. package/deps/jq/modules/oniguruma/src/iso8859_15.c +13 -34
  126. package/deps/jq/modules/oniguruma/src/iso8859_16.c +13 -29
  127. package/deps/jq/modules/oniguruma/src/iso8859_2.c +13 -29
  128. package/deps/jq/modules/oniguruma/src/iso8859_3.c +13 -33
  129. package/deps/jq/modules/oniguruma/src/iso8859_4.c +13 -32
  130. package/deps/jq/modules/oniguruma/src/iso8859_5.c +16 -23
  131. package/deps/jq/modules/oniguruma/src/iso8859_6.c +4 -2
  132. package/deps/jq/modules/oniguruma/src/iso8859_7.c +14 -29
  133. package/deps/jq/modules/oniguruma/src/iso8859_8.c +4 -2
  134. package/deps/jq/modules/oniguruma/src/iso8859_9.c +13 -33
  135. package/deps/jq/modules/oniguruma/src/koi8.c +14 -27
  136. package/deps/jq/modules/oniguruma/src/koi8_r.c +12 -19
  137. package/deps/jq/modules/oniguruma/src/make_property.sh +21 -0
  138. package/deps/jq/modules/oniguruma/src/make_unicode_egcb.sh +7 -0
  139. package/deps/jq/modules/oniguruma/src/make_unicode_egcb_data.py +267 -0
  140. package/deps/jq/modules/oniguruma/src/make_unicode_fold.sh +25 -11
  141. package/deps/jq/modules/oniguruma/src/make_unicode_fold_data.py +206 -26
  142. package/deps/jq/modules/oniguruma/src/make_unicode_property.sh +19 -10
  143. package/deps/jq/modules/oniguruma/src/make_unicode_property_data.py +474 -375
  144. package/deps/jq/modules/oniguruma/src/make_unicode_wb.sh +7 -0
  145. package/deps/jq/modules/oniguruma/src/make_unicode_wb_data.py +267 -0
  146. package/deps/jq/modules/oniguruma/src/mktable.c +28 -24
  147. package/deps/jq/modules/oniguruma/src/onig_init.c +2 -2
  148. package/deps/jq/modules/oniguruma/src/oniggnu.h +7 -5
  149. package/deps/jq/modules/oniguruma/src/onigposix.h +40 -16
  150. package/deps/jq/modules/oniguruma/src/oniguruma.h +357 -107
  151. package/deps/jq/modules/oniguruma/src/regcomp.c +6214 -3933
  152. package/deps/jq/modules/oniguruma/src/regenc.c +197 -120
  153. package/deps/jq/modules/oniguruma/src/regenc.h +106 -63
  154. package/deps/jq/modules/oniguruma/src/regerror.c +112 -91
  155. package/deps/jq/modules/oniguruma/src/regexec.c +4876 -2010
  156. package/deps/jq/modules/oniguruma/src/regext.c +8 -8
  157. package/deps/jq/modules/oniguruma/src/reggnu.c +13 -17
  158. package/deps/jq/modules/oniguruma/src/regint.h +757 -491
  159. package/deps/jq/modules/oniguruma/src/regparse.c +7204 -3240
  160. package/deps/jq/modules/oniguruma/src/regparse.h +361 -218
  161. package/deps/jq/modules/oniguruma/src/regposerr.c +49 -9
  162. package/deps/jq/modules/oniguruma/src/regposix.c +106 -24
  163. package/deps/jq/modules/oniguruma/src/regsyntax.c +66 -13
  164. package/deps/jq/modules/oniguruma/src/regtrav.c +1 -1
  165. package/deps/jq/modules/oniguruma/src/regversion.c +6 -4
  166. package/deps/jq/modules/oniguruma/src/sjis.c +23 -52
  167. package/deps/jq/modules/oniguruma/src/sjis_prop.c +25 -32
  168. package/deps/jq/modules/oniguruma/src/sjis_prop.gperf +1 -2
  169. package/deps/jq/modules/oniguruma/src/st.c +248 -249
  170. package/deps/jq/modules/oniguruma/src/st.h +4 -5
  171. package/deps/jq/modules/oniguruma/src/unicode.c +869 -294
  172. package/deps/jq/modules/oniguruma/src/unicode_egcb_data.c +1419 -0
  173. package/deps/jq/modules/oniguruma/src/unicode_fold1_key.c +1829 -1300
  174. package/deps/jq/modules/oniguruma/src/unicode_fold2_key.c +32 -9
  175. package/deps/jq/modules/oniguruma/src/unicode_fold3_key.c +32 -9
  176. package/deps/jq/modules/oniguruma/src/unicode_fold_data.c +1210 -984
  177. package/deps/jq/modules/oniguruma/src/unicode_property_data.c +22480 -15198
  178. package/deps/jq/modules/oniguruma/src/unicode_property_data_posix.c +1463 -591
  179. package/deps/jq/modules/oniguruma/src/unicode_unfold_key.c +1958 -1418
  180. package/deps/jq/modules/oniguruma/src/unicode_wb_data.c +1106 -0
  181. package/deps/jq/modules/oniguruma/src/utf16_be.c +90 -49
  182. package/deps/jq/modules/oniguruma/src/utf16_le.c +80 -49
  183. package/deps/jq/modules/oniguruma/src/utf32_be.c +14 -42
  184. package/deps/jq/modules/oniguruma/src/utf32_le.c +13 -40
  185. package/deps/jq/modules/oniguruma/src/utf8.c +33 -78
  186. package/deps/jq/modules/oniguruma/test/CMakeLists.txt +55 -0
  187. package/deps/jq/modules/oniguruma/test/Makefile.am +65 -10
  188. package/deps/jq/modules/oniguruma/test/test.sh +17 -0
  189. package/deps/jq/modules/oniguruma/test/test_back.c +1450 -0
  190. package/deps/jq/modules/oniguruma/test/test_options.c +228 -0
  191. package/deps/jq/modules/oniguruma/test/test_regset.c +466 -0
  192. package/deps/jq/modules/oniguruma/test/test_syntax.c +365 -0
  193. package/deps/jq/modules/oniguruma/test/test_utf8.c +1761 -0
  194. package/deps/jq/modules/oniguruma/test/testc.c +128 -88
  195. package/deps/jq/modules/oniguruma/test/testp.c +613 -0
  196. package/deps/jq/modules/oniguruma/test/testu.c +75 -28
  197. package/deps/jq/modules/oniguruma/tis-ci/stub.c +3 -0
  198. package/deps/jq/modules/oniguruma/tis-ci/test_back.config +26 -0
  199. package/deps/jq/modules/oniguruma/tis-ci/test_regset.config +20 -0
  200. package/deps/jq/modules/oniguruma/tis-ci/test_syntax.config +26 -0
  201. package/deps/jq/modules/oniguruma/tis-ci/test_utf8.config +25 -0
  202. package/deps/jq/modules/oniguruma/tis-ci/testc.config +26 -0
  203. package/deps/jq/modules/oniguruma/tis-ci/testu.config +24 -0
  204. package/deps/jq/modules/oniguruma/tis.config +1336 -0
  205. package/deps/jq/modules/oniguruma/windows/CMakeLists.txt +8 -0
  206. package/deps/jq/modules/oniguruma/windows/testc.c +865 -869
  207. package/deps/jq/scripts/update-website +6 -5
  208. package/deps/jq/scripts/version +10 -7
  209. package/deps/jq/sig/jq-release-new.key +29 -0
  210. package/deps/jq/sig/v1.4/sha256sum.txt +1 -0
  211. package/deps/jq/sig/v1.5/sha256sum.txt +2 -0
  212. package/deps/jq/sig/v1.5rc1/sha256sum.txt +1 -0
  213. package/deps/jq/sig/v1.5rc2/sha256sum.txt +2 -0
  214. package/deps/jq/sig/v1.6/sha256sum.txt +2 -0
  215. package/deps/jq/sig/v1.7/jq-1.7.tar.gz.asc +16 -0
  216. package/deps/jq/sig/v1.7/jq-1.7.zip.asc +16 -0
  217. package/deps/jq/sig/v1.7/jq-linux-amd64.asc +16 -0
  218. package/deps/jq/sig/v1.7/jq-linux-arm64.asc +16 -0
  219. package/deps/jq/sig/v1.7/jq-linux-armel.asc +16 -0
  220. package/deps/jq/sig/v1.7/jq-linux-armhf.asc +16 -0
  221. package/deps/jq/sig/v1.7/jq-linux-i386.asc +16 -0
  222. package/deps/jq/sig/v1.7/jq-linux-mips.asc +16 -0
  223. package/deps/jq/sig/v1.7/jq-linux-mips64.asc +16 -0
  224. package/deps/jq/sig/v1.7/jq-linux-mips64el.asc +16 -0
  225. package/deps/jq/sig/v1.7/jq-linux-mips64r6.asc +16 -0
  226. package/deps/jq/sig/v1.7/jq-linux-mips64r6el.asc +16 -0
  227. package/deps/jq/sig/v1.7/jq-linux-mipsel.asc +16 -0
  228. package/deps/jq/sig/v1.7/jq-linux-mipsr6.asc +16 -0
  229. package/deps/jq/sig/v1.7/jq-linux-mipsr6el.asc +16 -0
  230. package/deps/jq/sig/v1.7/jq-linux-powerpc.asc +16 -0
  231. package/deps/jq/sig/v1.7/jq-linux-ppc64el.asc +16 -0
  232. package/deps/jq/sig/v1.7/jq-linux-riscv64.asc +16 -0
  233. package/deps/jq/sig/v1.7/jq-linux-s390x.asc +16 -0
  234. package/deps/jq/sig/v1.7/jq-macos-amd64.asc +16 -0
  235. package/deps/jq/sig/v1.7/jq-macos-arm64.asc +16 -0
  236. package/deps/jq/sig/v1.7/jq-windows-amd64.exe.asc +16 -0
  237. package/deps/jq/sig/v1.7/jq-windows-i386.exe.asc +16 -0
  238. package/deps/jq/sig/v1.7/sha256sum.txt +23 -0
  239. package/deps/jq/sig/v1.7.1/jq-1.7.1.tar.gz.asc +16 -0
  240. package/deps/jq/sig/v1.7.1/jq-1.7.1.zip.asc +16 -0
  241. package/deps/jq/sig/v1.7.1/jq-linux-amd64.asc +16 -0
  242. package/deps/jq/sig/v1.7.1/jq-linux-arm64.asc +16 -0
  243. package/deps/jq/sig/v1.7.1/jq-linux-armel.asc +16 -0
  244. package/deps/jq/sig/v1.7.1/jq-linux-armhf.asc +16 -0
  245. package/deps/jq/sig/v1.7.1/jq-linux-i386.asc +16 -0
  246. package/deps/jq/sig/v1.7.1/jq-linux-mips.asc +16 -0
  247. package/deps/jq/sig/v1.7.1/jq-linux-mips64.asc +16 -0
  248. package/deps/jq/sig/v1.7.1/jq-linux-mips64el.asc +16 -0
  249. package/deps/jq/sig/v1.7.1/jq-linux-mips64r6.asc +16 -0
  250. package/deps/jq/sig/v1.7.1/jq-linux-mips64r6el.asc +16 -0
  251. package/deps/jq/sig/v1.7.1/jq-linux-mipsel.asc +16 -0
  252. package/deps/jq/sig/v1.7.1/jq-linux-mipsr6.asc +16 -0
  253. package/deps/jq/sig/v1.7.1/jq-linux-mipsr6el.asc +16 -0
  254. package/deps/jq/sig/v1.7.1/jq-linux-powerpc.asc +16 -0
  255. package/deps/jq/sig/v1.7.1/jq-linux-ppc64el.asc +16 -0
  256. package/deps/jq/sig/v1.7.1/jq-linux-riscv64.asc +16 -0
  257. package/deps/jq/sig/v1.7.1/jq-linux-s390x.asc +16 -0
  258. package/deps/jq/sig/v1.7.1/jq-linux64.asc +16 -0
  259. package/deps/jq/sig/v1.7.1/jq-macos-amd64.asc +16 -0
  260. package/deps/jq/sig/v1.7.1/jq-macos-arm64.asc +16 -0
  261. package/deps/jq/sig/v1.7.1/jq-osx-amd64.asc +16 -0
  262. package/deps/jq/sig/v1.7.1/jq-win64.exe.asc +16 -0
  263. package/deps/jq/sig/v1.7.1/jq-windows-amd64.exe.asc +16 -0
  264. package/deps/jq/sig/v1.7.1/jq-windows-i386.exe.asc +16 -0
  265. package/deps/jq/sig/v1.7.1/sha256sum.txt +26 -0
  266. package/deps/jq/sig/v1.7rc1/jq-1.7rc1.tar.gz.asc +16 -0
  267. package/deps/jq/sig/v1.7rc1/jq-1.7rc1.zip.asc +16 -0
  268. package/deps/jq/sig/v1.7rc1/jq-linux-amd64.asc +16 -0
  269. package/deps/jq/sig/v1.7rc1/jq-linux-arm64.asc +16 -0
  270. package/deps/jq/sig/v1.7rc1/jq-linux-armel.asc +16 -0
  271. package/deps/jq/sig/v1.7rc1/jq-linux-armhf.asc +16 -0
  272. package/deps/jq/sig/v1.7rc1/jq-linux-i386.asc +16 -0
  273. package/deps/jq/sig/v1.7rc1/jq-linux-mips.asc +16 -0
  274. package/deps/jq/sig/v1.7rc1/jq-linux-mips64.asc +16 -0
  275. package/deps/jq/sig/v1.7rc1/jq-linux-mips64el.asc +16 -0
  276. package/deps/jq/sig/v1.7rc1/jq-linux-mips64r6.asc +16 -0
  277. package/deps/jq/sig/v1.7rc1/jq-linux-mips64r6el.asc +16 -0
  278. package/deps/jq/sig/v1.7rc1/jq-linux-mipsel.asc +16 -0
  279. package/deps/jq/sig/v1.7rc1/jq-linux-mipsr6.asc +16 -0
  280. package/deps/jq/sig/v1.7rc1/jq-linux-mipsr6el.asc +16 -0
  281. package/deps/jq/sig/v1.7rc1/jq-linux-powerpc.asc +16 -0
  282. package/deps/jq/sig/v1.7rc1/jq-linux-ppc64el.asc +16 -0
  283. package/deps/jq/sig/v1.7rc1/jq-linux-riscv64.asc +16 -0
  284. package/deps/jq/sig/v1.7rc1/jq-linux-s390x.asc +16 -0
  285. package/deps/jq/sig/v1.7rc1/jq-macos-amd64.asc +16 -0
  286. package/deps/jq/sig/v1.7rc1/jq-macos-arm64.asc +16 -0
  287. package/deps/jq/sig/v1.7rc1/jq-windows-amd64.exe.asc +16 -0
  288. package/deps/jq/sig/v1.7rc1/jq-windows-i386.exe.asc +16 -0
  289. package/deps/jq/sig/v1.7rc1/sha256sum.txt +23 -0
  290. package/deps/jq/sig/v1.7rc2/jq-1.7rc2.tar.gz.asc +16 -0
  291. package/deps/jq/sig/v1.7rc2/jq-1.7rc2.zip.asc +16 -0
  292. package/deps/jq/sig/v1.7rc2/jq-linux-amd64.asc +16 -0
  293. package/deps/jq/sig/v1.7rc2/jq-linux-arm64.asc +16 -0
  294. package/deps/jq/sig/v1.7rc2/jq-linux-armel.asc +16 -0
  295. package/deps/jq/sig/v1.7rc2/jq-linux-armhf.asc +16 -0
  296. package/deps/jq/sig/v1.7rc2/jq-linux-i386.asc +16 -0
  297. package/deps/jq/sig/v1.7rc2/jq-linux-mips.asc +16 -0
  298. package/deps/jq/sig/v1.7rc2/jq-linux-mips64.asc +16 -0
  299. package/deps/jq/sig/v1.7rc2/jq-linux-mips64el.asc +16 -0
  300. package/deps/jq/sig/v1.7rc2/jq-linux-mips64r6.asc +16 -0
  301. package/deps/jq/sig/v1.7rc2/jq-linux-mips64r6el.asc +16 -0
  302. package/deps/jq/sig/v1.7rc2/jq-linux-mipsel.asc +16 -0
  303. package/deps/jq/sig/v1.7rc2/jq-linux-mipsr6.asc +16 -0
  304. package/deps/jq/sig/v1.7rc2/jq-linux-mipsr6el.asc +16 -0
  305. package/deps/jq/sig/v1.7rc2/jq-linux-powerpc.asc +16 -0
  306. package/deps/jq/sig/v1.7rc2/jq-linux-ppc64el.asc +16 -0
  307. package/deps/jq/sig/v1.7rc2/jq-linux-riscv64.asc +16 -0
  308. package/deps/jq/sig/v1.7rc2/jq-linux-s390x.asc +16 -0
  309. package/deps/jq/sig/v1.7rc2/jq-macos-amd64.asc +16 -0
  310. package/deps/jq/sig/v1.7rc2/jq-macos-arm64.asc +16 -0
  311. package/deps/jq/sig/v1.7rc2/jq-windows-amd64.exe.asc +16 -0
  312. package/deps/jq/sig/v1.7rc2/jq-windows-i386.exe.asc +16 -0
  313. package/deps/jq/sig/v1.7rc2/sha256sum.txt +23 -0
  314. package/deps/jq/src/builtin.c +537 -343
  315. package/deps/jq/src/builtin.h +18 -0
  316. package/deps/jq/src/builtin.jq +116 -143
  317. package/deps/jq/src/bytecode.h +8 -4
  318. package/deps/jq/src/compile.c +157 -143
  319. package/deps/jq/src/compile.h +3 -4
  320. package/deps/jq/src/decNumber/ICU-license.html +45 -0
  321. package/deps/jq/src/decNumber/decBasic.c +3908 -0
  322. package/deps/jq/src/decNumber/decCommon.c +1835 -0
  323. package/deps/jq/src/decNumber/decContext.c +437 -0
  324. package/deps/jq/src/decNumber/decContext.h +254 -0
  325. package/deps/jq/src/decNumber/decDPD.h +1185 -0
  326. package/deps/jq/src/decNumber/decDouble.c +140 -0
  327. package/deps/jq/src/decNumber/decDouble.h +155 -0
  328. package/deps/jq/src/decNumber/decNumber.c +8143 -0
  329. package/deps/jq/src/decNumber/decNumber.h +182 -0
  330. package/deps/jq/src/decNumber/decNumberLocal.h +757 -0
  331. package/deps/jq/src/decNumber/decPacked.c +220 -0
  332. package/deps/jq/src/decNumber/decPacked.h +52 -0
  333. package/deps/jq/src/decNumber/decQuad.c +135 -0
  334. package/deps/jq/src/decNumber/decQuad.h +177 -0
  335. package/deps/jq/src/decNumber/decSingle.c +71 -0
  336. package/deps/jq/src/decNumber/decSingle.h +86 -0
  337. package/deps/jq/src/decNumber/decimal128.c +553 -0
  338. package/deps/jq/src/decNumber/decimal128.h +81 -0
  339. package/deps/jq/src/decNumber/decimal32.c +476 -0
  340. package/deps/jq/src/decNumber/decimal32.h +81 -0
  341. package/deps/jq/src/decNumber/decimal64.c +839 -0
  342. package/deps/jq/src/decNumber/decimal64.h +83 -0
  343. package/deps/jq/src/decNumber/decnumber.pdf +0 -0
  344. package/deps/jq/src/decNumber/example1.c +38 -0
  345. package/deps/jq/src/decNumber/example2.c +52 -0
  346. package/deps/jq/src/decNumber/example3.c +64 -0
  347. package/deps/jq/src/decNumber/example4.c +61 -0
  348. package/deps/jq/src/decNumber/example5.c +36 -0
  349. package/deps/jq/src/decNumber/example6.c +61 -0
  350. package/deps/jq/src/decNumber/example7.c +35 -0
  351. package/deps/jq/src/decNumber/example8.c +39 -0
  352. package/deps/jq/src/decNumber/readme.txt +81 -0
  353. package/deps/jq/src/exec_stack.h +5 -3
  354. package/deps/jq/src/execute.c +126 -44
  355. package/deps/jq/src/inject_errors.c +0 -2
  356. package/deps/jq/src/jq.h +10 -1
  357. package/deps/jq/src/jq_test.c +222 -11
  358. package/deps/jq/src/jv.c +807 -176
  359. package/deps/jq/src/jv.h +22 -1
  360. package/deps/jq/src/jv_alloc.c +33 -26
  361. package/deps/jq/src/jv_alloc.h +0 -11
  362. package/deps/jq/src/jv_aux.c +153 -67
  363. package/deps/jq/src/jv_dtoa.c +12 -2
  364. package/deps/jq/src/jv_dtoa_tsd.c +51 -0
  365. package/deps/jq/src/jv_dtoa_tsd.h +4 -0
  366. package/deps/jq/src/jv_parse.c +70 -15
  367. package/deps/jq/src/jv_print.c +56 -60
  368. package/deps/jq/src/jv_private.h +7 -0
  369. package/deps/jq/src/jv_thread.h +76 -0
  370. package/deps/jq/src/jv_unicode.c +18 -0
  371. package/deps/jq/src/jv_unicode.h +2 -0
  372. package/deps/jq/src/lexer.c +782 -543
  373. package/deps/jq/src/lexer.h +438 -64
  374. package/deps/jq/src/lexer.l +10 -3
  375. package/deps/jq/src/libm.h +16 -6
  376. package/deps/jq/src/linker.c +97 -40
  377. package/deps/jq/src/locfile.c +2 -1
  378. package/deps/jq/src/main.c +384 -336
  379. package/deps/jq/src/opcode_list.h +5 -2
  380. package/deps/jq/src/parser.c +2260 -1898
  381. package/deps/jq/src/parser.h +115 -98
  382. package/deps/jq/src/parser.y +124 -89
  383. package/deps/jq/src/util.c +854 -55
  384. package/deps/jq/src/util.h +6 -4
  385. package/deps/jq/tests/jq.test +762 -26
  386. package/deps/jq/tests/jq_fuzz_compile.c +27 -0
  387. package/deps/jq/tests/jq_fuzz_execute.cpp +42 -0
  388. package/deps/jq/tests/jq_fuzz_fixed.cpp +297 -0
  389. package/deps/jq/tests/jq_fuzz_load_file.c +28 -0
  390. package/deps/jq/tests/jq_fuzz_parse.c +21 -0
  391. package/deps/jq/tests/jq_fuzz_parse_extended.c +36 -0
  392. package/deps/jq/tests/jq_fuzz_parse_stream.c +21 -0
  393. package/deps/jq/tests/local.supp +14 -0
  394. package/deps/jq/tests/man.test +979 -0
  395. package/deps/jq/tests/manonig.test +76 -0
  396. package/deps/jq/tests/manonigtest +5 -0
  397. package/deps/jq/tests/mantest +1 -2
  398. package/deps/jq/tests/modules/home2/.jq/g.jq +1 -0
  399. package/deps/jq/tests/modules/shadow1.jq +2 -0
  400. package/deps/jq/tests/modules/shadow2.jq +1 -0
  401. package/deps/jq/tests/modules/test_bind_order0.jq +1 -0
  402. package/deps/jq/tests/modules/test_bind_order1.jq +1 -1
  403. package/deps/jq/tests/modules/test_bind_order2.jq +0 -1
  404. package/deps/jq/tests/no-main-program.jq +1 -0
  405. package/deps/jq/tests/onig.test +77 -2
  406. package/deps/jq/tests/setup +7 -2
  407. package/deps/jq/tests/shtest +478 -59
  408. package/deps/jq/tests/uri.test +38 -0
  409. package/deps/jq/tests/uritest +5 -0
  410. package/deps/jq/tests/yes-main-program.jq +2 -0
  411. package/lib/index.js +3 -0
  412. package/lib/jq.js +15 -1
  413. package/lib/templateAsync.js +137 -0
  414. package/package.json +7 -7
  415. package/src/binding.cc +623 -146
  416. package/src/binding.h +3 -4
  417. package/test/santiy-async.test.js +171 -0
  418. package/test/santiy.test.js +2 -2
  419. package/test/template-async.test.js +182 -0
  420. package/test/template.test.js +3 -3
  421. package/deps/jq/.travis.yml +0 -202
  422. package/deps/jq/NEWS +0 -89
  423. package/deps/jq/appveyor.yml +0 -53
  424. package/deps/jq/docs/Gemfile +0 -7
  425. package/deps/jq/docs/Gemfile.lock +0 -63
  426. package/deps/jq/docs/Rakefile +0 -24
  427. package/deps/jq/docs/Rakefile.manual +0 -49
  428. package/deps/jq/docs/Rakefile.website +0 -76
  429. package/deps/jq/docs/content/1.tutorial/default.yml +0 -327
  430. package/deps/jq/docs/content/2.download/default.yml +0 -193
  431. package/deps/jq/docs/content/index/index.yml +0 -73
  432. package/deps/jq/docs/public/css/base.scss +0 -181
  433. package/deps/jq/docs/public/jq.png +0 -0
  434. package/deps/jq/docs/site.yml +0 -9
  435. package/deps/jq/docs/templates/default.liquid +0 -34
  436. package/deps/jq/docs/templates/index.liquid +0 -73
  437. package/deps/jq/docs/templates/manual.liquid +0 -99
  438. package/deps/jq/docs/templates/shared/_footer.liquid +0 -10
  439. package/deps/jq/docs/templates/shared/_head.liquid +0 -17
  440. package/deps/jq/docs/templates/shared/_navbar.liquid +0 -27
  441. package/deps/jq/modules/oniguruma/README.ja +0 -195
  442. package/deps/jq/modules/oniguruma/cmake/dist.cmake +0 -321
  443. package/deps/jq/modules/oniguruma/contributed/libfuzzer-onig.cpp +0 -31
  444. package/deps/jq/modules/oniguruma/dist.info +0 -10
  445. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold1_key.c +0 -2250
  446. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold2_key.c +0 -203
  447. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold3_key.c +0 -113
  448. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_fold_data.c +0 -1225
  449. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_property_data.c +0 -24742
  450. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_property_data_posix.c +0 -4846
  451. package/deps/jq/modules/oniguruma/src/unicode-7.0/unicode_unfold_key.c +0 -2571
  452. /package/deps/jq/sig/{jq-release.key → jq-release-old.key} +0 -0
  453. /package/deps/jq/tests/modules/{.jq → home1/.jq} +0 -0
@@ -0,0 +1,1336 @@
1
+ [
2
+ {
3
+ "include": "tis-ci/test_utf8.config",
4
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=1",
5
+ "name": "test_utf8.c (1/80)"
6
+ },
7
+ {
8
+ "include": "tis-ci/test_utf8.config",
9
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=2",
10
+ "name": "test_utf8.c (2/80)"
11
+ },
12
+ {
13
+ "include": "tis-ci/test_utf8.config",
14
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=3",
15
+ "name": "test_utf8.c (3/80)"
16
+ },
17
+ {
18
+ "include": "tis-ci/test_utf8.config",
19
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=4",
20
+ "name": "test_utf8.c (4/80)"
21
+ },
22
+ {
23
+ "include": "tis-ci/test_utf8.config",
24
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=5",
25
+ "name": "test_utf8.c (5/80)"
26
+ },
27
+ {
28
+ "include": "tis-ci/test_utf8.config",
29
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=6",
30
+ "name": "test_utf8.c (6/80)"
31
+ },
32
+ {
33
+ "include": "tis-ci/test_utf8.config",
34
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=7",
35
+ "name": "test_utf8.c (7/80)"
36
+ },
37
+ {
38
+ "include": "tis-ci/test_utf8.config",
39
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=8",
40
+ "name": "test_utf8.c (8/80)"
41
+ },
42
+ {
43
+ "include": "tis-ci/test_utf8.config",
44
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=9",
45
+ "name": "test_utf8.c (9/80)"
46
+ },
47
+ {
48
+ "include": "tis-ci/test_utf8.config",
49
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=10",
50
+ "name": "test_utf8.c (10/80)"
51
+ },
52
+ {
53
+ "include": "tis-ci/test_utf8.config",
54
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=11",
55
+ "name": "test_utf8.c (11/80)"
56
+ },
57
+ {
58
+ "include": "tis-ci/test_utf8.config",
59
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=12",
60
+ "name": "test_utf8.c (12/80)"
61
+ },
62
+ {
63
+ "include": "tis-ci/test_utf8.config",
64
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=13",
65
+ "name": "test_utf8.c (13/80)"
66
+ },
67
+ {
68
+ "include": "tis-ci/test_utf8.config",
69
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=14",
70
+ "name": "test_utf8.c (14/80)"
71
+ },
72
+ {
73
+ "include": "tis-ci/test_utf8.config",
74
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=15",
75
+ "name": "test_utf8.c (15/80)"
76
+ },
77
+ {
78
+ "include": "tis-ci/test_utf8.config",
79
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=16",
80
+ "name": "test_utf8.c (16/80)"
81
+ },
82
+ {
83
+ "include": "tis-ci/test_utf8.config",
84
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=17",
85
+ "name": "test_utf8.c (17/80)"
86
+ },
87
+ {
88
+ "include": "tis-ci/test_utf8.config",
89
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=18",
90
+ "name": "test_utf8.c (18/80)"
91
+ },
92
+ {
93
+ "include": "tis-ci/test_utf8.config",
94
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=19",
95
+ "name": "test_utf8.c (19/80)"
96
+ },
97
+ {
98
+ "include": "tis-ci/test_utf8.config",
99
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=20",
100
+ "name": "test_utf8.c (20/80)"
101
+ },
102
+ {
103
+ "include": "tis-ci/test_utf8.config",
104
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=21",
105
+ "name": "test_utf8.c (21/80)"
106
+ },
107
+ {
108
+ "include": "tis-ci/test_utf8.config",
109
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=22",
110
+ "name": "test_utf8.c (22/80)"
111
+ },
112
+ {
113
+ "include": "tis-ci/test_utf8.config",
114
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=23",
115
+ "name": "test_utf8.c (23/80)"
116
+ },
117
+ {
118
+ "include": "tis-ci/test_utf8.config",
119
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=24",
120
+ "name": "test_utf8.c (24/80)"
121
+ },
122
+ {
123
+ "include": "tis-ci/test_utf8.config",
124
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=25",
125
+ "name": "test_utf8.c (25/80)"
126
+ },
127
+ {
128
+ "include": "tis-ci/test_utf8.config",
129
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=26",
130
+ "name": "test_utf8.c (26/80)"
131
+ },
132
+ {
133
+ "include": "tis-ci/test_utf8.config",
134
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=27",
135
+ "name": "test_utf8.c (27/80)"
136
+ },
137
+ {
138
+ "include": "tis-ci/test_utf8.config",
139
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=28",
140
+ "name": "test_utf8.c (28/80)"
141
+ },
142
+ {
143
+ "include": "tis-ci/test_utf8.config",
144
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=29",
145
+ "name": "test_utf8.c (29/80)"
146
+ },
147
+ {
148
+ "include": "tis-ci/test_utf8.config",
149
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=30",
150
+ "name": "test_utf8.c (30/80)"
151
+ },
152
+ {
153
+ "include": "tis-ci/test_utf8.config",
154
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=31",
155
+ "name": "test_utf8.c (31/80)"
156
+ },
157
+ {
158
+ "include": "tis-ci/test_utf8.config",
159
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=32",
160
+ "name": "test_utf8.c (32/80)"
161
+ },
162
+ {
163
+ "include": "tis-ci/test_utf8.config",
164
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=33",
165
+ "name": "test_utf8.c (33/80)"
166
+ },
167
+ {
168
+ "include": "tis-ci/test_utf8.config",
169
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=34",
170
+ "name": "test_utf8.c (34/80)"
171
+ },
172
+ {
173
+ "include": "tis-ci/test_utf8.config",
174
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=35",
175
+ "name": "test_utf8.c (35/80)"
176
+ },
177
+ {
178
+ "include": "tis-ci/test_utf8.config",
179
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=36",
180
+ "name": "test_utf8.c (36/80)"
181
+ },
182
+ {
183
+ "include": "tis-ci/test_utf8.config",
184
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=37",
185
+ "name": "test_utf8.c (37/80)"
186
+ },
187
+ {
188
+ "include": "tis-ci/test_utf8.config",
189
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=38",
190
+ "name": "test_utf8.c (38/80)"
191
+ },
192
+ {
193
+ "include": "tis-ci/test_utf8.config",
194
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=39",
195
+ "name": "test_utf8.c (39/80)"
196
+ },
197
+ {
198
+ "include": "tis-ci/test_utf8.config",
199
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=40",
200
+ "name": "test_utf8.c (40/80)"
201
+ },
202
+ {
203
+ "include": "tis-ci/test_utf8.config",
204
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=41",
205
+ "name": "test_utf8.c (41/80)"
206
+ },
207
+ {
208
+ "include": "tis-ci/test_utf8.config",
209
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=42",
210
+ "name": "test_utf8.c (42/80)"
211
+ },
212
+ {
213
+ "include": "tis-ci/test_utf8.config",
214
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=43",
215
+ "name": "test_utf8.c (43/80)"
216
+ },
217
+ {
218
+ "include": "tis-ci/test_utf8.config",
219
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=44",
220
+ "name": "test_utf8.c (44/80)"
221
+ },
222
+ {
223
+ "include": "tis-ci/test_utf8.config",
224
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=45",
225
+ "name": "test_utf8.c (45/80)"
226
+ },
227
+ {
228
+ "include": "tis-ci/test_utf8.config",
229
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=46",
230
+ "name": "test_utf8.c (46/80)"
231
+ },
232
+ {
233
+ "include": "tis-ci/test_utf8.config",
234
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=47",
235
+ "name": "test_utf8.c (47/80)"
236
+ },
237
+ {
238
+ "include": "tis-ci/test_utf8.config",
239
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=48",
240
+ "name": "test_utf8.c (48/80)"
241
+ },
242
+ {
243
+ "include": "tis-ci/test_utf8.config",
244
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=49",
245
+ "name": "test_utf8.c (49/80)"
246
+ },
247
+ {
248
+ "include": "tis-ci/test_utf8.config",
249
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=50",
250
+ "name": "test_utf8.c (50/80)"
251
+ },
252
+ {
253
+ "include": "tis-ci/test_utf8.config",
254
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=51",
255
+ "name": "test_utf8.c (51/80)"
256
+ },
257
+ {
258
+ "include": "tis-ci/test_utf8.config",
259
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=52",
260
+ "name": "test_utf8.c (52/80)"
261
+ },
262
+ {
263
+ "include": "tis-ci/test_utf8.config",
264
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=53",
265
+ "name": "test_utf8.c (53/80)"
266
+ },
267
+ {
268
+ "include": "tis-ci/test_utf8.config",
269
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=54",
270
+ "name": "test_utf8.c (54/80)"
271
+ },
272
+ {
273
+ "include": "tis-ci/test_utf8.config",
274
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=55",
275
+ "name": "test_utf8.c (55/80)"
276
+ },
277
+ {
278
+ "include": "tis-ci/test_utf8.config",
279
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=56",
280
+ "name": "test_utf8.c (56/80)"
281
+ },
282
+ {
283
+ "include": "tis-ci/test_utf8.config",
284
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=57",
285
+ "name": "test_utf8.c (57/80)"
286
+ },
287
+ {
288
+ "include": "tis-ci/test_utf8.config",
289
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=58",
290
+ "name": "test_utf8.c (58/80)"
291
+ },
292
+ {
293
+ "include": "tis-ci/test_utf8.config",
294
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=59",
295
+ "name": "test_utf8.c (59/80)"
296
+ },
297
+ {
298
+ "include": "tis-ci/test_utf8.config",
299
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=60",
300
+ "name": "test_utf8.c (60/80)"
301
+ },
302
+ {
303
+ "include": "tis-ci/test_utf8.config",
304
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=61",
305
+ "name": "test_utf8.c (61/80)"
306
+ },
307
+ {
308
+ "include": "tis-ci/test_utf8.config",
309
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=62",
310
+ "name": "test_utf8.c (62/80)"
311
+ },
312
+ {
313
+ "include": "tis-ci/test_utf8.config",
314
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=63",
315
+ "name": "test_utf8.c (63/80)"
316
+ },
317
+ {
318
+ "include": "tis-ci/test_utf8.config",
319
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=64",
320
+ "name": "test_utf8.c (64/80)"
321
+ },
322
+ {
323
+ "include": "tis-ci/test_utf8.config",
324
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=65",
325
+ "name": "test_utf8.c (65/80)"
326
+ },
327
+ {
328
+ "include": "tis-ci/test_utf8.config",
329
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=66",
330
+ "name": "test_utf8.c (66/80)"
331
+ },
332
+ {
333
+ "include": "tis-ci/test_utf8.config",
334
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=67",
335
+ "name": "test_utf8.c (67/80)"
336
+ },
337
+ {
338
+ "include": "tis-ci/test_utf8.config",
339
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=68",
340
+ "name": "test_utf8.c (68/80)"
341
+ },
342
+ {
343
+ "include": "tis-ci/test_utf8.config",
344
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=69",
345
+ "name": "test_utf8.c (69/80)"
346
+ },
347
+ {
348
+ "include": "tis-ci/test_utf8.config",
349
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=70",
350
+ "name": "test_utf8.c (70/80)"
351
+ },
352
+ {
353
+ "include": "tis-ci/test_utf8.config",
354
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=71",
355
+ "name": "test_utf8.c (71/80)"
356
+ },
357
+ {
358
+ "include": "tis-ci/test_utf8.config",
359
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=72",
360
+ "name": "test_utf8.c (72/80)"
361
+ },
362
+ {
363
+ "include": "tis-ci/test_utf8.config",
364
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=73",
365
+ "name": "test_utf8.c (73/80)"
366
+ },
367
+ {
368
+ "include": "tis-ci/test_utf8.config",
369
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=74",
370
+ "name": "test_utf8.c (74/80)"
371
+ },
372
+ {
373
+ "include": "tis-ci/test_utf8.config",
374
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=75",
375
+ "name": "test_utf8.c (75/80)"
376
+ },
377
+ {
378
+ "include": "tis-ci/test_utf8.config",
379
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=76",
380
+ "name": "test_utf8.c (76/80)"
381
+ },
382
+ {
383
+ "include": "tis-ci/test_utf8.config",
384
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=77",
385
+ "name": "test_utf8.c (77/80)"
386
+ },
387
+ {
388
+ "include": "tis-ci/test_utf8.config",
389
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=78",
390
+ "name": "test_utf8.c (78/80)"
391
+ },
392
+ {
393
+ "include": "tis-ci/test_utf8.config",
394
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=79",
395
+ "name": "test_utf8.c (79/80)"
396
+ },
397
+ {
398
+ "include": "tis-ci/test_utf8.config",
399
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=0",
400
+ "name": "test_utf8.c (80/80)"
401
+ },
402
+ {
403
+ "include": "tis-ci/test_regset.config",
404
+ "name": "test_regset.c FULL"
405
+ },
406
+ {
407
+ "include": "tis-ci/test_syntax.config",
408
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=6 -DTIS_TEST_CHOOSE_CURRENT=1",
409
+ "name": "test_syntax.c (1/6)"
410
+ },
411
+ {
412
+ "include": "tis-ci/test_syntax.config",
413
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=6 -DTIS_TEST_CHOOSE_CURRENT=2",
414
+ "name": "test_syntax.c (2/6)"
415
+ },
416
+ {
417
+ "include": "tis-ci/test_syntax.config",
418
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=6 -DTIS_TEST_CHOOSE_CURRENT=3",
419
+ "name": "test_syntax.c (3/6)"
420
+ },
421
+ {
422
+ "include": "tis-ci/test_syntax.config",
423
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=6 -DTIS_TEST_CHOOSE_CURRENT=4",
424
+ "name": "test_syntax.c (4/6)"
425
+ },
426
+ {
427
+ "include": "tis-ci/test_syntax.config",
428
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=6 -DTIS_TEST_CHOOSE_CURRENT=5",
429
+ "name": "test_syntax.c (5/6)"
430
+ },
431
+ {
432
+ "include": "tis-ci/test_syntax.config",
433
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=6 -DTIS_TEST_CHOOSE_CURRENT=0",
434
+ "name": "test_syntax.c (6/6)"
435
+ },
436
+ {
437
+ "include": "tis-ci/testu.config",
438
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=1",
439
+ "name": "testu.c (1/50)"
440
+ },
441
+ {
442
+ "include": "tis-ci/testu.config",
443
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=2",
444
+ "name": "testu.c (2/50)"
445
+ },
446
+ {
447
+ "include": "tis-ci/testu.config",
448
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=3",
449
+ "name": "testu.c (3/50)"
450
+ },
451
+ {
452
+ "include": "tis-ci/testu.config",
453
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=4",
454
+ "name": "testu.c (4/50)"
455
+ },
456
+ {
457
+ "include": "tis-ci/testu.config",
458
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=5",
459
+ "name": "testu.c (5/50)"
460
+ },
461
+ {
462
+ "include": "tis-ci/testu.config",
463
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=6",
464
+ "name": "testu.c (6/50)"
465
+ },
466
+ {
467
+ "include": "tis-ci/testu.config",
468
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=7",
469
+ "name": "testu.c (7/50)"
470
+ },
471
+ {
472
+ "include": "tis-ci/testu.config",
473
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=8",
474
+ "name": "testu.c (8/50)"
475
+ },
476
+ {
477
+ "include": "tis-ci/testu.config",
478
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=9",
479
+ "name": "testu.c (9/50)"
480
+ },
481
+ {
482
+ "include": "tis-ci/testu.config",
483
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=10",
484
+ "name": "testu.c (10/50)"
485
+ },
486
+ {
487
+ "include": "tis-ci/testu.config",
488
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=11",
489
+ "name": "testu.c (11/50)"
490
+ },
491
+ {
492
+ "include": "tis-ci/testu.config",
493
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=12",
494
+ "name": "testu.c (12/50)"
495
+ },
496
+ {
497
+ "include": "tis-ci/testu.config",
498
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=13",
499
+ "name": "testu.c (13/50)"
500
+ },
501
+ {
502
+ "include": "tis-ci/testu.config",
503
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=14",
504
+ "name": "testu.c (14/50)"
505
+ },
506
+ {
507
+ "include": "tis-ci/testu.config",
508
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=15",
509
+ "name": "testu.c (15/50)"
510
+ },
511
+ {
512
+ "include": "tis-ci/testu.config",
513
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=16",
514
+ "name": "testu.c (16/50)"
515
+ },
516
+ {
517
+ "include": "tis-ci/testu.config",
518
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=17",
519
+ "name": "testu.c (17/50)"
520
+ },
521
+ {
522
+ "include": "tis-ci/testu.config",
523
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=18",
524
+ "name": "testu.c (18/50)"
525
+ },
526
+ {
527
+ "include": "tis-ci/testu.config",
528
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=19",
529
+ "name": "testu.c (19/50)"
530
+ },
531
+ {
532
+ "include": "tis-ci/testu.config",
533
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=20",
534
+ "name": "testu.c (20/50)"
535
+ },
536
+ {
537
+ "include": "tis-ci/testu.config",
538
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=21",
539
+ "name": "testu.c (21/50)"
540
+ },
541
+ {
542
+ "include": "tis-ci/testu.config",
543
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=22",
544
+ "name": "testu.c (22/50)"
545
+ },
546
+ {
547
+ "include": "tis-ci/testu.config",
548
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=23",
549
+ "name": "testu.c (23/50)"
550
+ },
551
+ {
552
+ "include": "tis-ci/testu.config",
553
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=24",
554
+ "name": "testu.c (24/50)"
555
+ },
556
+ {
557
+ "include": "tis-ci/testu.config",
558
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=25",
559
+ "name": "testu.c (25/50)"
560
+ },
561
+ {
562
+ "include": "tis-ci/testu.config",
563
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=26",
564
+ "name": "testu.c (26/50)"
565
+ },
566
+ {
567
+ "include": "tis-ci/testu.config",
568
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=27",
569
+ "name": "testu.c (27/50)"
570
+ },
571
+ {
572
+ "include": "tis-ci/testu.config",
573
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=28",
574
+ "name": "testu.c (28/50)"
575
+ },
576
+ {
577
+ "include": "tis-ci/testu.config",
578
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=29",
579
+ "name": "testu.c (29/50)"
580
+ },
581
+ {
582
+ "include": "tis-ci/testu.config",
583
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=30",
584
+ "name": "testu.c (30/50)"
585
+ },
586
+ {
587
+ "include": "tis-ci/testu.config",
588
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=31",
589
+ "name": "testu.c (31/50)"
590
+ },
591
+ {
592
+ "include": "tis-ci/testu.config",
593
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=32",
594
+ "name": "testu.c (32/50)"
595
+ },
596
+ {
597
+ "include": "tis-ci/testu.config",
598
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=33",
599
+ "name": "testu.c (33/50)"
600
+ },
601
+ {
602
+ "include": "tis-ci/testu.config",
603
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=34",
604
+ "name": "testu.c (34/50)"
605
+ },
606
+ {
607
+ "include": "tis-ci/testu.config",
608
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=35",
609
+ "name": "testu.c (35/50)"
610
+ },
611
+ {
612
+ "include": "tis-ci/testu.config",
613
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=36",
614
+ "name": "testu.c (36/50)"
615
+ },
616
+ {
617
+ "include": "tis-ci/testu.config",
618
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=37",
619
+ "name": "testu.c (37/50)"
620
+ },
621
+ {
622
+ "include": "tis-ci/testu.config",
623
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=38",
624
+ "name": "testu.c (38/50)"
625
+ },
626
+ {
627
+ "include": "tis-ci/testu.config",
628
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=39",
629
+ "name": "testu.c (39/50)"
630
+ },
631
+ {
632
+ "include": "tis-ci/testu.config",
633
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=40",
634
+ "name": "testu.c (40/50)"
635
+ },
636
+ {
637
+ "include": "tis-ci/testu.config",
638
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=41",
639
+ "name": "testu.c (41/50)"
640
+ },
641
+ {
642
+ "include": "tis-ci/testu.config",
643
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=42",
644
+ "name": "testu.c (42/50)"
645
+ },
646
+ {
647
+ "include": "tis-ci/testu.config",
648
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=43",
649
+ "name": "testu.c (43/50)"
650
+ },
651
+ {
652
+ "include": "tis-ci/testu.config",
653
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=44",
654
+ "name": "testu.c (44/50)"
655
+ },
656
+ {
657
+ "include": "tis-ci/testu.config",
658
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=45",
659
+ "name": "testu.c (45/50)"
660
+ },
661
+ {
662
+ "include": "tis-ci/testu.config",
663
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=46",
664
+ "name": "testu.c (46/50)"
665
+ },
666
+ {
667
+ "include": "tis-ci/testu.config",
668
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=47",
669
+ "name": "testu.c (47/50)"
670
+ },
671
+ {
672
+ "include": "tis-ci/testu.config",
673
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=48",
674
+ "name": "testu.c (48/50)"
675
+ },
676
+ {
677
+ "include": "tis-ci/testu.config",
678
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=49",
679
+ "name": "testu.c (49/50)"
680
+ },
681
+ {
682
+ "include": "tis-ci/testu.config",
683
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=0",
684
+ "name": "testu.c (50/50)"
685
+ },
686
+ {
687
+ "include": "tis-ci/testc.config",
688
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=1",
689
+ "name": "testc.c (1/50)"
690
+ },
691
+ {
692
+ "include": "tis-ci/testc.config",
693
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=2",
694
+ "name": "testc.c (2/50)"
695
+ },
696
+ {
697
+ "include": "tis-ci/testc.config",
698
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=3",
699
+ "name": "testc.c (3/50)"
700
+ },
701
+ {
702
+ "include": "tis-ci/testc.config",
703
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=4",
704
+ "name": "testc.c (4/50)"
705
+ },
706
+ {
707
+ "include": "tis-ci/testc.config",
708
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=5",
709
+ "name": "testc.c (5/50)"
710
+ },
711
+ {
712
+ "include": "tis-ci/testc.config",
713
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=6",
714
+ "name": "testc.c (6/50)"
715
+ },
716
+ {
717
+ "include": "tis-ci/testc.config",
718
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=7",
719
+ "name": "testc.c (7/50)"
720
+ },
721
+ {
722
+ "include": "tis-ci/testc.config",
723
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=8",
724
+ "name": "testc.c (8/50)"
725
+ },
726
+ {
727
+ "include": "tis-ci/testc.config",
728
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=9",
729
+ "name": "testc.c (9/50)"
730
+ },
731
+ {
732
+ "include": "tis-ci/testc.config",
733
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=10",
734
+ "name": "testc.c (10/50)"
735
+ },
736
+ {
737
+ "include": "tis-ci/testc.config",
738
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=11",
739
+ "name": "testc.c (11/50)"
740
+ },
741
+ {
742
+ "include": "tis-ci/testc.config",
743
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=12",
744
+ "name": "testc.c (12/50)"
745
+ },
746
+ {
747
+ "include": "tis-ci/testc.config",
748
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=13",
749
+ "name": "testc.c (13/50)"
750
+ },
751
+ {
752
+ "include": "tis-ci/testc.config",
753
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=14",
754
+ "name": "testc.c (14/50)"
755
+ },
756
+ {
757
+ "include": "tis-ci/testc.config",
758
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=15",
759
+ "name": "testc.c (15/50)"
760
+ },
761
+ {
762
+ "include": "tis-ci/testc.config",
763
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=16",
764
+ "name": "testc.c (16/50)"
765
+ },
766
+ {
767
+ "include": "tis-ci/testc.config",
768
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=17",
769
+ "name": "testc.c (17/50)"
770
+ },
771
+ {
772
+ "include": "tis-ci/testc.config",
773
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=18",
774
+ "name": "testc.c (18/50)"
775
+ },
776
+ {
777
+ "include": "tis-ci/testc.config",
778
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=19",
779
+ "name": "testc.c (19/50)"
780
+ },
781
+ {
782
+ "include": "tis-ci/testc.config",
783
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=20",
784
+ "name": "testc.c (20/50)"
785
+ },
786
+ {
787
+ "include": "tis-ci/testc.config",
788
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=21",
789
+ "name": "testc.c (21/50)"
790
+ },
791
+ {
792
+ "include": "tis-ci/testc.config",
793
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=22",
794
+ "name": "testc.c (22/50)"
795
+ },
796
+ {
797
+ "include": "tis-ci/testc.config",
798
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=23",
799
+ "name": "testc.c (23/50)"
800
+ },
801
+ {
802
+ "include": "tis-ci/testc.config",
803
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=24",
804
+ "name": "testc.c (24/50)"
805
+ },
806
+ {
807
+ "include": "tis-ci/testc.config",
808
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=25",
809
+ "name": "testc.c (25/50)"
810
+ },
811
+ {
812
+ "include": "tis-ci/testc.config",
813
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=26",
814
+ "name": "testc.c (26/50)"
815
+ },
816
+ {
817
+ "include": "tis-ci/testc.config",
818
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=27",
819
+ "name": "testc.c (27/50)"
820
+ },
821
+ {
822
+ "include": "tis-ci/testc.config",
823
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=28",
824
+ "name": "testc.c (28/50)"
825
+ },
826
+ {
827
+ "include": "tis-ci/testc.config",
828
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=29",
829
+ "name": "testc.c (29/50)"
830
+ },
831
+ {
832
+ "include": "tis-ci/testc.config",
833
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=30",
834
+ "name": "testc.c (30/50)"
835
+ },
836
+ {
837
+ "include": "tis-ci/testc.config",
838
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=31",
839
+ "name": "testc.c (31/50)"
840
+ },
841
+ {
842
+ "include": "tis-ci/testc.config",
843
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=32",
844
+ "name": "testc.c (32/50)"
845
+ },
846
+ {
847
+ "include": "tis-ci/testc.config",
848
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=33",
849
+ "name": "testc.c (33/50)"
850
+ },
851
+ {
852
+ "include": "tis-ci/testc.config",
853
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=34",
854
+ "name": "testc.c (34/50)"
855
+ },
856
+ {
857
+ "include": "tis-ci/testc.config",
858
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=35",
859
+ "name": "testc.c (35/50)"
860
+ },
861
+ {
862
+ "include": "tis-ci/testc.config",
863
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=36",
864
+ "name": "testc.c (36/50)"
865
+ },
866
+ {
867
+ "include": "tis-ci/testc.config",
868
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=37",
869
+ "name": "testc.c (37/50)"
870
+ },
871
+ {
872
+ "include": "tis-ci/testc.config",
873
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=38",
874
+ "name": "testc.c (38/50)"
875
+ },
876
+ {
877
+ "include": "tis-ci/testc.config",
878
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=39",
879
+ "name": "testc.c (39/50)"
880
+ },
881
+ {
882
+ "include": "tis-ci/testc.config",
883
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=40",
884
+ "name": "testc.c (40/50)"
885
+ },
886
+ {
887
+ "include": "tis-ci/testc.config",
888
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=41",
889
+ "name": "testc.c (41/50)"
890
+ },
891
+ {
892
+ "include": "tis-ci/testc.config",
893
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=42",
894
+ "name": "testc.c (42/50)"
895
+ },
896
+ {
897
+ "include": "tis-ci/testc.config",
898
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=43",
899
+ "name": "testc.c (43/50)"
900
+ },
901
+ {
902
+ "include": "tis-ci/testc.config",
903
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=44",
904
+ "name": "testc.c (44/50)"
905
+ },
906
+ {
907
+ "include": "tis-ci/testc.config",
908
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=45",
909
+ "name": "testc.c (45/50)"
910
+ },
911
+ {
912
+ "include": "tis-ci/testc.config",
913
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=46",
914
+ "name": "testc.c (46/50)"
915
+ },
916
+ {
917
+ "include": "tis-ci/testc.config",
918
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=47",
919
+ "name": "testc.c (47/50)"
920
+ },
921
+ {
922
+ "include": "tis-ci/testc.config",
923
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=48",
924
+ "name": "testc.c (48/50)"
925
+ },
926
+ {
927
+ "include": "tis-ci/testc.config",
928
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=49",
929
+ "name": "testc.c (49/50)"
930
+ },
931
+ {
932
+ "include": "tis-ci/testc.config",
933
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=50 -DTIS_TEST_CHOOSE_CURRENT=0",
934
+ "name": "testc.c (50/50)"
935
+ },
936
+ {
937
+ "include": "tis-ci/test_back.config",
938
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=1",
939
+ "name": "test_back.c (1/80)"
940
+ },
941
+ {
942
+ "include": "tis-ci/test_back.config",
943
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=2",
944
+ "name": "test_back.c (2/80)"
945
+ },
946
+ {
947
+ "include": "tis-ci/test_back.config",
948
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=3",
949
+ "name": "test_back.c (3/80)"
950
+ },
951
+ {
952
+ "include": "tis-ci/test_back.config",
953
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=4",
954
+ "name": "test_back.c (4/80)"
955
+ },
956
+ {
957
+ "include": "tis-ci/test_back.config",
958
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=5",
959
+ "name": "test_back.c (5/80)"
960
+ },
961
+ {
962
+ "include": "tis-ci/test_back.config",
963
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=6",
964
+ "name": "test_back.c (6/80)"
965
+ },
966
+ {
967
+ "include": "tis-ci/test_back.config",
968
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=7",
969
+ "name": "test_back.c (7/80)"
970
+ },
971
+ {
972
+ "include": "tis-ci/test_back.config",
973
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=8",
974
+ "name": "test_back.c (8/80)"
975
+ },
976
+ {
977
+ "include": "tis-ci/test_back.config",
978
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=9",
979
+ "name": "test_back.c (9/80)"
980
+ },
981
+ {
982
+ "include": "tis-ci/test_back.config",
983
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=10",
984
+ "name": "test_back.c (10/80)"
985
+ },
986
+ {
987
+ "include": "tis-ci/test_back.config",
988
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=11",
989
+ "name": "test_back.c (11/80)"
990
+ },
991
+ {
992
+ "include": "tis-ci/test_back.config",
993
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=12",
994
+ "name": "test_back.c (12/80)"
995
+ },
996
+ {
997
+ "include": "tis-ci/test_back.config",
998
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=13",
999
+ "name": "test_back.c (13/80)"
1000
+ },
1001
+ {
1002
+ "include": "tis-ci/test_back.config",
1003
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=14",
1004
+ "name": "test_back.c (14/80)"
1005
+ },
1006
+ {
1007
+ "include": "tis-ci/test_back.config",
1008
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=15",
1009
+ "name": "test_back.c (15/80)"
1010
+ },
1011
+ {
1012
+ "include": "tis-ci/test_back.config",
1013
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=16",
1014
+ "name": "test_back.c (16/80)"
1015
+ },
1016
+ {
1017
+ "include": "tis-ci/test_back.config",
1018
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=17",
1019
+ "name": "test_back.c (17/80)"
1020
+ },
1021
+ {
1022
+ "include": "tis-ci/test_back.config",
1023
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=18",
1024
+ "name": "test_back.c (18/80)"
1025
+ },
1026
+ {
1027
+ "include": "tis-ci/test_back.config",
1028
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=19",
1029
+ "name": "test_back.c (19/80)"
1030
+ },
1031
+ {
1032
+ "include": "tis-ci/test_back.config",
1033
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=20",
1034
+ "name": "test_back.c (20/80)"
1035
+ },
1036
+ {
1037
+ "include": "tis-ci/test_back.config",
1038
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=21",
1039
+ "name": "test_back.c (21/80)"
1040
+ },
1041
+ {
1042
+ "include": "tis-ci/test_back.config",
1043
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=22",
1044
+ "name": "test_back.c (22/80)"
1045
+ },
1046
+ {
1047
+ "include": "tis-ci/test_back.config",
1048
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=23",
1049
+ "name": "test_back.c (23/80)"
1050
+ },
1051
+ {
1052
+ "include": "tis-ci/test_back.config",
1053
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=24",
1054
+ "name": "test_back.c (24/80)"
1055
+ },
1056
+ {
1057
+ "include": "tis-ci/test_back.config",
1058
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=25",
1059
+ "name": "test_back.c (25/80)"
1060
+ },
1061
+ {
1062
+ "include": "tis-ci/test_back.config",
1063
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=26",
1064
+ "name": "test_back.c (26/80)"
1065
+ },
1066
+ {
1067
+ "include": "tis-ci/test_back.config",
1068
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=27",
1069
+ "name": "test_back.c (27/80)"
1070
+ },
1071
+ {
1072
+ "include": "tis-ci/test_back.config",
1073
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=28",
1074
+ "name": "test_back.c (28/80)"
1075
+ },
1076
+ {
1077
+ "include": "tis-ci/test_back.config",
1078
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=29",
1079
+ "name": "test_back.c (29/80)"
1080
+ },
1081
+ {
1082
+ "include": "tis-ci/test_back.config",
1083
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=30",
1084
+ "name": "test_back.c (30/80)"
1085
+ },
1086
+ {
1087
+ "include": "tis-ci/test_back.config",
1088
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=31",
1089
+ "name": "test_back.c (31/80)"
1090
+ },
1091
+ {
1092
+ "include": "tis-ci/test_back.config",
1093
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=32",
1094
+ "name": "test_back.c (32/80)"
1095
+ },
1096
+ {
1097
+ "include": "tis-ci/test_back.config",
1098
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=33",
1099
+ "name": "test_back.c (33/80)"
1100
+ },
1101
+ {
1102
+ "include": "tis-ci/test_back.config",
1103
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=34",
1104
+ "name": "test_back.c (34/80)"
1105
+ },
1106
+ {
1107
+ "include": "tis-ci/test_back.config",
1108
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=35",
1109
+ "name": "test_back.c (35/80)"
1110
+ },
1111
+ {
1112
+ "include": "tis-ci/test_back.config",
1113
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=36",
1114
+ "name": "test_back.c (36/80)"
1115
+ },
1116
+ {
1117
+ "include": "tis-ci/test_back.config",
1118
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=37",
1119
+ "name": "test_back.c (37/80)"
1120
+ },
1121
+ {
1122
+ "include": "tis-ci/test_back.config",
1123
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=38",
1124
+ "name": "test_back.c (38/80)"
1125
+ },
1126
+ {
1127
+ "include": "tis-ci/test_back.config",
1128
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=39",
1129
+ "name": "test_back.c (39/80)"
1130
+ },
1131
+ {
1132
+ "include": "tis-ci/test_back.config",
1133
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=40",
1134
+ "name": "test_back.c (40/80)"
1135
+ },
1136
+ {
1137
+ "include": "tis-ci/test_back.config",
1138
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=41",
1139
+ "name": "test_back.c (41/80)"
1140
+ },
1141
+ {
1142
+ "include": "tis-ci/test_back.config",
1143
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=42",
1144
+ "name": "test_back.c (42/80)"
1145
+ },
1146
+ {
1147
+ "include": "tis-ci/test_back.config",
1148
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=43",
1149
+ "name": "test_back.c (43/80)"
1150
+ },
1151
+ {
1152
+ "include": "tis-ci/test_back.config",
1153
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=44",
1154
+ "name": "test_back.c (44/80)"
1155
+ },
1156
+ {
1157
+ "include": "tis-ci/test_back.config",
1158
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=45",
1159
+ "name": "test_back.c (45/80)"
1160
+ },
1161
+ {
1162
+ "include": "tis-ci/test_back.config",
1163
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=46",
1164
+ "name": "test_back.c (46/80)"
1165
+ },
1166
+ {
1167
+ "include": "tis-ci/test_back.config",
1168
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=47",
1169
+ "name": "test_back.c (47/80)"
1170
+ },
1171
+ {
1172
+ "include": "tis-ci/test_back.config",
1173
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=48",
1174
+ "name": "test_back.c (48/80)"
1175
+ },
1176
+ {
1177
+ "include": "tis-ci/test_back.config",
1178
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=49",
1179
+ "name": "test_back.c (49/80)"
1180
+ },
1181
+ {
1182
+ "include": "tis-ci/test_back.config",
1183
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=50",
1184
+ "name": "test_back.c (50/80)"
1185
+ },
1186
+ {
1187
+ "include": "tis-ci/test_back.config",
1188
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=51",
1189
+ "name": "test_back.c (51/80)"
1190
+ },
1191
+ {
1192
+ "include": "tis-ci/test_back.config",
1193
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=52",
1194
+ "name": "test_back.c (52/80)"
1195
+ },
1196
+ {
1197
+ "include": "tis-ci/test_back.config",
1198
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=53",
1199
+ "name": "test_back.c (53/80)"
1200
+ },
1201
+ {
1202
+ "include": "tis-ci/test_back.config",
1203
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=54",
1204
+ "name": "test_back.c (54/80)"
1205
+ },
1206
+ {
1207
+ "include": "tis-ci/test_back.config",
1208
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=55",
1209
+ "name": "test_back.c (55/80)"
1210
+ },
1211
+ {
1212
+ "include": "tis-ci/test_back.config",
1213
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=56",
1214
+ "name": "test_back.c (56/80)"
1215
+ },
1216
+ {
1217
+ "include": "tis-ci/test_back.config",
1218
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=57",
1219
+ "name": "test_back.c (57/80)"
1220
+ },
1221
+ {
1222
+ "include": "tis-ci/test_back.config",
1223
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=58",
1224
+ "name": "test_back.c (58/80)"
1225
+ },
1226
+ {
1227
+ "include": "tis-ci/test_back.config",
1228
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=59",
1229
+ "name": "test_back.c (59/80)"
1230
+ },
1231
+ {
1232
+ "include": "tis-ci/test_back.config",
1233
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=60",
1234
+ "name": "test_back.c (60/80)"
1235
+ },
1236
+ {
1237
+ "include": "tis-ci/test_back.config",
1238
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=61",
1239
+ "name": "test_back.c (61/80)"
1240
+ },
1241
+ {
1242
+ "include": "tis-ci/test_back.config",
1243
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=62",
1244
+ "name": "test_back.c (62/80)"
1245
+ },
1246
+ {
1247
+ "include": "tis-ci/test_back.config",
1248
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=63",
1249
+ "name": "test_back.c (63/80)"
1250
+ },
1251
+ {
1252
+ "include": "tis-ci/test_back.config",
1253
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=64",
1254
+ "name": "test_back.c (64/80)"
1255
+ },
1256
+ {
1257
+ "include": "tis-ci/test_back.config",
1258
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=65",
1259
+ "name": "test_back.c (65/80)"
1260
+ },
1261
+ {
1262
+ "include": "tis-ci/test_back.config",
1263
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=66",
1264
+ "name": "test_back.c (66/80)"
1265
+ },
1266
+ {
1267
+ "include": "tis-ci/test_back.config",
1268
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=67",
1269
+ "name": "test_back.c (67/80)"
1270
+ },
1271
+ {
1272
+ "include": "tis-ci/test_back.config",
1273
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=68",
1274
+ "name": "test_back.c (68/80)"
1275
+ },
1276
+ {
1277
+ "include": "tis-ci/test_back.config",
1278
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=69",
1279
+ "name": "test_back.c (69/80)"
1280
+ },
1281
+ {
1282
+ "include": "tis-ci/test_back.config",
1283
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=70",
1284
+ "name": "test_back.c (70/80)"
1285
+ },
1286
+ {
1287
+ "include": "tis-ci/test_back.config",
1288
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=71",
1289
+ "name": "test_back.c (71/80)"
1290
+ },
1291
+ {
1292
+ "include": "tis-ci/test_back.config",
1293
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=72",
1294
+ "name": "test_back.c (72/80)"
1295
+ },
1296
+ {
1297
+ "include": "tis-ci/test_back.config",
1298
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=73",
1299
+ "name": "test_back.c (73/80)"
1300
+ },
1301
+ {
1302
+ "include": "tis-ci/test_back.config",
1303
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=74",
1304
+ "name": "test_back.c (74/80)"
1305
+ },
1306
+ {
1307
+ "include": "tis-ci/test_back.config",
1308
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=75",
1309
+ "name": "test_back.c (75/80)"
1310
+ },
1311
+ {
1312
+ "include": "tis-ci/test_back.config",
1313
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=76",
1314
+ "name": "test_back.c (76/80)"
1315
+ },
1316
+ {
1317
+ "include": "tis-ci/test_back.config",
1318
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=77",
1319
+ "name": "test_back.c (77/80)"
1320
+ },
1321
+ {
1322
+ "include": "tis-ci/test_back.config",
1323
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=78",
1324
+ "name": "test_back.c (78/80)"
1325
+ },
1326
+ {
1327
+ "include": "tis-ci/test_back.config",
1328
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=79",
1329
+ "name": "test_back.c (79/80)"
1330
+ },
1331
+ {
1332
+ "include": "tis-ci/test_back.config",
1333
+ "compilation_cmd": "-DTIS_TEST_CHOOSE_MAX=80 -DTIS_TEST_CHOOSE_CURRENT=0",
1334
+ "name": "test_back.c (80/80)"
1335
+ }
1336
+ ]