Makefile.am 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. ## Process this file with automake to produce Makefile.in.
  2. ##
  3. ## Copyright 2001-2020, 2023 Software Foundation, Inc.
  4. ##
  5. ## This file is part of GUILE.
  6. ##
  7. ## GUILE is free software; you can redistribute it and/or modify it
  8. ## under the terms of the GNU Lesser General Public License as
  9. ## published by the Free Software Foundation; either version 3, or
  10. ## (at your option) any later version.
  11. ##
  12. ## GUILE is distributed in the hope that it will be useful, but
  13. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. ## GNU Lesser General Public License for more details.
  16. ##
  17. ## You should have received a copy of the GNU Lesser General Public
  18. ## License along with GUILE; see the file COPYING.LESSER. If not,
  19. ## write to the Free Software Foundation, Inc., 51 Franklin Street,
  20. ## Fifth Floor, Boston, MA 02110-1301 USA
  21. SUBDIRS = standalone
  22. SCM_TESTS = tests/00-initial-env.test \
  23. tests/00-repl-server.test \
  24. tests/00-socket.test \
  25. tests/alist.test \
  26. tests/and-let-star.test \
  27. tests/arrays.test \
  28. tests/bit-operations.test \
  29. tests/bitvectors.test \
  30. tests/brainfuck.test \
  31. tests/bytevectors.test \
  32. tests/c-api.test \
  33. tests/chars.test \
  34. tests/coding.test \
  35. tests/common-list.test \
  36. tests/compiler.test \
  37. tests/control.test \
  38. tests/continuations.test \
  39. tests/copy-tree.test \
  40. tests/coverage.test \
  41. tests/cross-compilation.test \
  42. tests/curried-definitions.test \
  43. tests/dwarf.test \
  44. tests/ecmascript.test \
  45. tests/elisp.test \
  46. tests/elisp-compiler.test \
  47. tests/elisp-reader.test \
  48. tests/encoding-escapes.test \
  49. tests/encoding-iso88591.test \
  50. tests/encoding-iso88597.test \
  51. tests/encoding-utf8.test \
  52. tests/error-handling.test \
  53. tests/eval.test \
  54. tests/eval-string.test \
  55. tests/exceptions.test \
  56. tests/fdes-finalizers.test \
  57. tests/filesys.test \
  58. tests/fluids.test \
  59. tests/foreign.test \
  60. tests/format.test \
  61. tests/fractions.test \
  62. tests/ftw.test \
  63. tests/future.test \
  64. tests/gc.test \
  65. tests/getopt-long.test \
  66. tests/goops.test \
  67. tests/guardians.test \
  68. tests/hash.test \
  69. tests/hooks.test \
  70. tests/i18n.test \
  71. tests/iconv.test \
  72. tests/import.test \
  73. tests/interp.test \
  74. tests/keywords.test \
  75. tests/list.test \
  76. tests/load.test \
  77. tests/match.test \
  78. tests/match.test.upstream \
  79. tests/modules.test \
  80. tests/multilingual.nottest \
  81. tests/net-db.test \
  82. tests/numbers.test \
  83. tests/optargs.test \
  84. tests/options.test \
  85. tests/pairs.test \
  86. tests/parameters.test \
  87. tests/peg.test \
  88. tests/peval.test \
  89. tests/print.test \
  90. tests/procprop.test \
  91. tests/procs.test \
  92. tests/poe.test \
  93. tests/popen.test \
  94. tests/popen-child.scm \
  95. tests/ports.test \
  96. tests/posix.test \
  97. tests/q.test \
  98. tests/r4rs.test \
  99. tests/r5rs_pitfall.test \
  100. tests/r6rs-arithmetic-bitwise.test \
  101. tests/r6rs-arithmetic-fixnums.test \
  102. tests/r6rs-arithmetic-flonums.test \
  103. tests/r6rs-base.test \
  104. tests/r6rs-conditions.test \
  105. tests/r6rs-control.test \
  106. tests/r6rs-enums.test \
  107. tests/r6rs-eval.test \
  108. tests/r6rs-exceptions.test \
  109. tests/r6rs-files.test \
  110. tests/r6rs-hashtables.test \
  111. tests/r6rs-lists.test \
  112. tests/r6rs-ports.test \
  113. tests/r6rs-records-inspection.test \
  114. tests/r6rs-records-procedural.test \
  115. tests/r6rs-records-syntactic.test \
  116. tests/r6rs-unicode.test \
  117. tests/rnrs-libraries.test \
  118. tests/array-map.test \
  119. tests/random.test \
  120. tests/rdelim.test \
  121. tests/reader.test \
  122. tests/records.test \
  123. tests/receive.test \
  124. tests/regexp.test \
  125. tests/rtl.test \
  126. tests/rtl-compilation.test \
  127. tests/sandbox.test \
  128. tests/session.test \
  129. tests/signals.test \
  130. tests/sort.test \
  131. tests/srcprop.test \
  132. tests/srfi-1.test \
  133. tests/srfi-2.test \
  134. tests/srfi-6.test \
  135. tests/srfi-10.test \
  136. tests/srfi-11.test \
  137. tests/srfi-13.test \
  138. tests/srfi-14.test \
  139. tests/srfi-17.test \
  140. tests/srfi-18.test \
  141. tests/srfi-19.test \
  142. tests/srfi-26.test \
  143. tests/srfi-27.test \
  144. tests/srfi-31.test \
  145. tests/srfi-34.test \
  146. tests/srfi-35.test \
  147. tests/srfi-37.test \
  148. tests/srfi-38.test \
  149. tests/srfi-39.test \
  150. tests/srfi-41.test \
  151. tests/srfi-42.test \
  152. tests/srfi-43.test \
  153. tests/srfi-45.test \
  154. tests/srfi-60.test \
  155. tests/srfi-64.test \
  156. tests/srfi-67.test \
  157. tests/srfi-69.test \
  158. tests/srfi-71.test \
  159. tests/srfi-88.test \
  160. tests/srfi-98.test \
  161. tests/srfi-105.test \
  162. tests/srfi-111.test \
  163. tests/srfi-125.test \
  164. tests/srfi-126.test \
  165. tests/srfi-128.test \
  166. tests/srfi-151.test \
  167. tests/srfi-171.test \
  168. tests/srfi-4.test \
  169. tests/srfi-9.test \
  170. tests/statprof.test \
  171. tests/streams.test \
  172. tests/strings.test \
  173. tests/structs.test \
  174. tests/suspendable-ports.test \
  175. tests/sxml.fold.test \
  176. tests/sxml.match.test \
  177. tests/sxml.simple.test \
  178. tests/sxml.ssax.test \
  179. tests/sxml.transform.test \
  180. tests/sxml.xpath.test \
  181. tests/symbols.test \
  182. tests/syncase.test \
  183. tests/syntax.test \
  184. tests/texinfo.test \
  185. tests/texinfo.docbook.test \
  186. tests/texinfo.html.test \
  187. tests/texinfo.plain-text.test \
  188. tests/texinfo.serialize.test \
  189. tests/texinfo.string-utils.test \
  190. tests/threads.test \
  191. tests/time.test \
  192. tests/tree-il.test \
  193. tests/types.test \
  194. tests/unicode.test \
  195. tests/version.test \
  196. tests/vectors.test \
  197. tests/vlist.test \
  198. tests/vm.test \
  199. tests/weaks.test \
  200. tests/web-client.test \
  201. tests/web-http.test \
  202. tests/web-request.test \
  203. tests/web-response.test \
  204. tests/web-server.test \
  205. tests/web-uri.test
  206. EXTRA_DIST = \
  207. guile-test \
  208. test-suite/lib.scm \
  209. $(SCM_TESTS) \
  210. tests/rnrs-test-a.scm \
  211. tests/srfi-64-test.scm \
  212. tests/srfi-125-test.scm \
  213. tests/srfi-126-test.scm \
  214. tests/srfi-128-test.scm \
  215. tests/srfi-151-test.scm \
  216. ChangeLog-2008
  217. # Test suite of Dominique Boucher's `lalr-scm'.
  218. # From http://code.google.com/p/lalr-scm/.
  219. LALR_TESTS = \
  220. lalr/test-glr-associativity.scm \
  221. lalr/test-glr-basics-01.scm \
  222. lalr/test-glr-basics-02.scm \
  223. lalr/test-glr-basics-03.scm \
  224. lalr/test-glr-basics-04.scm \
  225. lalr/test-glr-basics-05.scm \
  226. lalr/test-glr-script-expression.scm \
  227. lalr/test-glr-single-expressions.scm \
  228. \
  229. lalr/test-lr-associativity-01.scm \
  230. lalr/test-lr-basics-01.scm \
  231. lalr/test-lr-basics-02.scm \
  232. lalr/test-lr-basics-03.scm \
  233. lalr/test-lr-basics-04.scm \
  234. lalr/test-lr-basics-05.scm \
  235. lalr/test-lr-error-recovery-01.scm \
  236. lalr/test-lr-error-recovery-02.scm \
  237. lalr/test-lr-no-clause.scm \
  238. lalr/test-lr-script-expression.scm \
  239. lalr/test-lr-single-expressions.scm
  240. # Tests not listed in `run-guile-test.sh' and which should not be run.
  241. LALR_EXTRA = \
  242. lalr/test-lr-associativity-02.scm \
  243. lalr/test-lr-associativity-03.scm \
  244. lalr/test-lr-associativity-04.scm
  245. # Test framework.
  246. LALR_EXTRA += \
  247. lalr/common-test.scm \
  248. lalr/glr-test.scm \
  249. lalr/run-guile-test.sh
  250. TESTS = $(LALR_TESTS)
  251. TESTS_ENVIRONMENT = \
  252. @LOCALCHARSET_TESTS_ENVIRONMENT@ \
  253. $(top_builddir)/meta/guile --no-auto-compile
  254. EXTRA_DIST += $(LALR_EXTRA) $(LALR_TESTS) tests/sxml-match-tests.ss