You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by vn...@apache.org on 2019/01/07 00:43:38 UTC

[7/7] guacamole-server git commit: GUACAMOLE-662: Merge fix handling of unit tests within buid.

GUACAMOLE-662: Merge fix handling of unit tests within buid.


Project: http://git-wip-us.apache.org/repos/asf/guacamole-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/guacamole-server/commit/aba7b987
Tree: http://git-wip-us.apache.org/repos/asf/guacamole-server/tree/aba7b987
Diff: http://git-wip-us.apache.org/repos/asf/guacamole-server/diff/aba7b987

Branch: refs/heads/master
Commit: aba7b987d388c71d3dd6bb63d22d6e01995d317d
Parents: b6477ea 476b431
Author: Nick Couchman <vn...@apache.org>
Authored: Sun Jan 6 19:42:12 2019 -0500
Committer: Nick Couchman <vn...@apache.org>
Committed: Sun Jan 6 19:42:12 2019 -0500

----------------------------------------------------------------------
 .gitignore                                      |  15 +-
 Makefile.am                                     |  25 +-
 README-unit-testing.md                          |  89 ++++++
 configure.ac                                    |   7 +-
 src/common/.gitignore                           |   9 +
 src/common/Makefile.am                          |   1 +
 src/common/tests/Makefile.am                    |  72 +++++
 src/common/tests/iconv/convert.c                | 185 ++++++++++++
 src/common/tests/rect/clip_and_split.c          | 156 ++++++++++
 src/common/tests/rect/constrain.c               |  43 +++
 src/common/tests/rect/expand_to_grid.c          |  71 +++++
 src/common/tests/rect/extend.c                  |  42 +++
 src/common/tests/rect/init.c                    |  39 +++
 src/common/tests/rect/intersects.c              |  91 ++++++
 src/common/tests/string/count_occurrences.c     |  33 +++
 src/common/tests/string/split.c                 |  63 ++++
 src/libguac/.gitignore                          |  44 +--
 src/libguac/Makefile.am                         |   1 +
 src/libguac/tests/Makefile.am                   |  76 +++++
 src/libguac/tests/client/buffer_pool.c          |  76 +++++
 src/libguac/tests/client/layer_pool.c           |  76 +++++
 src/libguac/tests/parser/append.c               |  77 +++++
 src/libguac/tests/parser/read.c                 | 145 ++++++++++
 src/libguac/tests/pool/next_free.c              |  90 ++++++
 src/libguac/tests/protocol/base64_decode.c      |  55 ++++
 src/libguac/tests/socket/fd_send_instruction.c  | 136 +++++++++
 .../tests/socket/nested_send_instruction.c      | 149 ++++++++++
 src/libguac/tests/unicode/charsize.c            |  33 +++
 src/libguac/tests/unicode/read.c                |  52 ++++
 src/libguac/tests/unicode/strlen.c              |  59 ++++
 src/libguac/tests/unicode/write.c               |  45 +++
 tests/Makefile.am                               |  66 -----
 tests/client/buffer_pool.c                      |  73 -----
 tests/client/client_suite.c                     |  56 ----
 tests/client/client_suite.h                     |  32 --
 tests/client/layer_pool.c                       |  73 -----
 tests/common/common_suite.c                     |  57 ----
 tests/common/common_suite.h                     |  55 ----
 tests/common/guac_iconv.c                       | 128 --------
 tests/common/guac_rect.c                        | 289 -------------------
 tests/common/guac_string.c                      |  70 -----
 tests/protocol/base64_decode.c                  |  59 ----
 tests/protocol/instruction_parse.c              |  76 -----
 tests/protocol/instruction_read.c               | 108 -------
 tests/protocol/instruction_write.c              | 101 -------
 tests/protocol/nest_write.c                     | 109 -------
 tests/protocol/suite.c                          |  59 ----
 tests/protocol/suite.h                          |  43 ---
 tests/test_libguac.c                            |  47 ---
 tests/util/guac_pool.c                          |  89 ------
 tests/util/guac_unicode.c                       |  81 ------
 tests/util/util_suite.c                         |  56 ----
 tests/util/util_suite.h                         |  75 -----
 util/generate-test-runner.pl                    | 199 +++++++++++++
 54 files changed, 2189 insertions(+), 1867 deletions(-)
----------------------------------------------------------------------