PageRenderTime 28ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/js/lib/Socket.IO-node/support/expresso/deps/jscoverage/tests/Makefile.am

http://github.com/onedayitwillmake/RealtimeMultiplayerNodeJs
Makefile | 130 lines | 96 code | 18 blank | 16 comment | 0 complexity | 48f518a1a417cbe503ff3202fb4548f6 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, MPL-2.0-no-copyleft-exception, BSD-3-Clause
  1. # Makefile.am - build tests
  2. # Copyright (C) 2007, 2008 siliconforks.com
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2 of the License, or
  7. # (at your option) any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License along
  15. # with this program; if not, write to the Free Software Foundation, Inc.,
  16. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  17. noinst_PROGRAMS = asprintf \
  18. encodings \
  19. gethostbyname \
  20. http-client-bad-body \
  21. http-client-bad-url \
  22. http-client-close-after-request \
  23. http-server-bad-body \
  24. http-server-bad-headers \
  25. http-server-charset \
  26. http-server-chunked \
  27. http-server-close-immediately \
  28. json \
  29. mkdirs \
  30. recursive-dir-list \
  31. streams
  32. AM_CFLAGS = @XP_DEF@ -I../js -I../js/obj
  33. AM_CXXFLAGS = @XP_DEF@ -I../js -I../js/obj
  34. asprintf_SOURCES = asprintf.c ../util.c
  35. encodings_SOURCES = encodings.c ../encoding.c ../util.c
  36. encodings_LDADD = @LIBICONV@
  37. gethostbyname_SOURCES = gethostbyname.c ../http-host.c ../util.c
  38. gethostbyname_LDADD = @EXTRA_SOCKET_LIBS@
  39. http_client_bad_body_SOURCES = http-client-bad-body.c ../http-url.c ../util.c
  40. http_client_bad_body_LDADD = @EXTRA_SOCKET_LIBS@
  41. http_client_bad_url_SOURCES = http-client-bad-url.c ../util.c
  42. http_client_bad_url_LDADD = @EXTRA_SOCKET_LIBS@
  43. http_client_close_after_request_LDADD = @EXTRA_SOCKET_LIBS@
  44. http_server_bad_body_LDADD = @EXTRA_SOCKET_LIBS@
  45. http_server_bad_headers_LDADD = @EXTRA_SOCKET_LIBS@
  46. http_server_charset_SOURCES = http-server-charset.c ../stream.c ../util.c
  47. http_server_charset_LDADD = @EXTRA_SOCKET_LIBS@
  48. http_server_chunked_SOURCES = http-server-chunked.c ../stream.c ../util.c
  49. http_server_chunked_LDADD = @EXTRA_SOCKET_LIBS@
  50. http_server_close_immediately_LDADD = @EXTRA_SOCKET_LIBS@
  51. json_SOURCES = json.c ../encoding.c ../highlight.c ../instrument-js.cpp ../resource-manager.c ../stream.c ../util.c
  52. json_LDADD = ../js/obj/libjs.a -lm @LIBICONV@ @EXTRA_TIMER_LIBS@
  53. mkdirs_SOURCES = mkdirs.c ../util.c
  54. recursive_dir_list_SOURCES = recursive-dir-list.c ../util.c
  55. streams_SOURCES = streams.c ../stream.c ../util.c
  56. TESTS = encodings.sh \
  57. fatal.sh \
  58. help.sh \
  59. invalid-option.sh \
  60. javascript.sh \
  61. javascript-ignore.sh \
  62. javascript-utf-8.sh \
  63. no-arguments.sh \
  64. recursive.sh \
  65. recursive-crlf.sh \
  66. recursive-exclude.sh \
  67. recursive-fatal.sh \
  68. recursive-no-instrument.sh \
  69. same-directory.sh \
  70. version.sh \
  71. asprintf.sh \
  72. mkdirs.sh \
  73. recursive-dir-list.sh \
  74. streams.sh \
  75. charset.sh \
  76. chunked.sh \
  77. gethostbyname.sh \
  78. json.sh \
  79. proxy.sh \
  80. proxy-bad-request-body.sh \
  81. proxy-bad-response-body.sh \
  82. proxy-bad-response-body-javascript.sh \
  83. proxy-bad-response-headers.sh \
  84. proxy-no-server.sh \
  85. proxy-url.sh \
  86. server.sh \
  87. server-bad-requests.sh \
  88. server-close-after-request.sh \
  89. server-content-types.sh \
  90. server-directory-listing.sh \
  91. server-directory-redirect.sh \
  92. server-encoded-url.sh \
  93. server-error.sh \
  94. server-help.sh \
  95. server-ip-address.sh \
  96. server-shutdown.sh \
  97. server-shutdown-bad-method.sh \
  98. server-special-file.sh \
  99. server-unreadable-directory.sh \
  100. server-unreadable-file.sh \
  101. server-verbose.sh \
  102. server-version.sh \
  103. store.sh \
  104. store-bad-json.sh \
  105. store-bad-request-body.sh \
  106. store-bad-response-headers.sh \
  107. store-escaped-characters.sh \
  108. store-server-bad-body.sh \
  109. store-server-closes-immediately.sh \
  110. store-source-not-found.sh \
  111. store-unreadable-json.sh \
  112. store-unwritable-json.sh