You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
3.1 KiB

  1. # Copyright 2017 Google Inc.
  2. # All Rights Reserved.
  3. #
  4. #
  5. # Redistribution and use in source and binary forms, with or without
  6. # modification, are permitted provided that the following conditions are
  7. # met:
  8. #
  9. # * Redistributions of source code must retain the above copyright
  10. # notice, this list of conditions and the following disclaimer.
  11. # * Redistributions in binary form must reproduce the above
  12. # copyright notice, this list of conditions and the following disclaimer
  13. # in the documentation and/or other materials provided with the
  14. # distribution.
  15. # * Neither the name of Google Inc. nor the names of its
  16. # contributors may be used to endorse or promote products derived from
  17. # this software without specific prior written permission.
  18. #
  19. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22. # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  23. # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  24. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  25. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  26. # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  27. # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. #
  31. # Author: misterg@google.com (Gennadiy Civil)
  32. #
  33. # Bazel Build for Google C++ Testing Framework(Google Test)-googlemock
  34. load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_test")
  35. load("@rules_python//python:defs.bzl", "py_library", "py_test")
  36. licenses(["notice"])
  37. # Tests for GMock itself
  38. cc_test(
  39. name = "gmock_all_test",
  40. size = "small",
  41. srcs = glob(include = ["gmock-*.cc"]),
  42. linkopts = select({
  43. "//:windows": [],
  44. "//conditions:default": ["-pthread"],
  45. }),
  46. deps = ["//:gtest"],
  47. )
  48. # Python tests
  49. py_library(
  50. name = "gmock_test_utils",
  51. testonly = 1,
  52. srcs = ["gmock_test_utils.py"],
  53. )
  54. cc_binary(
  55. name = "gmock_leak_test_",
  56. testonly = 1,
  57. srcs = ["gmock_leak_test_.cc"],
  58. deps = ["//:gtest_main"],
  59. )
  60. py_test(
  61. name = "gmock_leak_test",
  62. size = "medium",
  63. srcs = ["gmock_leak_test.py"],
  64. data = [
  65. ":gmock_leak_test_",
  66. ":gmock_test_utils",
  67. ],
  68. )
  69. cc_test(
  70. name = "gmock_link_test",
  71. size = "small",
  72. srcs = [
  73. "gmock_link2_test.cc",
  74. "gmock_link_test.cc",
  75. "gmock_link_test.h",
  76. ],
  77. deps = ["//:gtest_main"],
  78. )
  79. cc_binary(
  80. name = "gmock_output_test_",
  81. srcs = ["gmock_output_test_.cc"],
  82. deps = ["//:gtest"],
  83. )
  84. py_test(
  85. name = "gmock_output_test",
  86. size = "medium",
  87. srcs = ["gmock_output_test.py"],
  88. data = [
  89. ":gmock_output_test_",
  90. ":gmock_output_test_golden.txt",
  91. ],
  92. python_version = "PY2",
  93. deps = [":gmock_test_utils"],
  94. )
  95. cc_test(
  96. name = "gmock_test",
  97. size = "small",
  98. srcs = ["gmock_test.cc"],
  99. deps = ["//:gtest_main"],
  100. )