rn-leveldb 3.11.0

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 (595) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +92 -0
  3. package/android/.project +34 -0
  4. package/android/.settings/org.eclipse.buildship.core.prefs +13 -0
  5. package/android/CMakeLists.txt +69 -0
  6. package/android/build.gradle +125 -0
  7. package/android/cpp-adapter.cpp +19 -0
  8. package/android/gradle.properties +6 -0
  9. package/android/src/main/AndroidManifest.xml +4 -0
  10. package/android/src/main/java/com/reactnativeleveldb/LeveldbModule.java +57 -0
  11. package/android/src/main/java/com/reactnativeleveldb/LeveldbPackage.java +28 -0
  12. package/cpp/leveldb/.appveyor.yml +36 -0
  13. package/cpp/leveldb/.clang-format +18 -0
  14. package/cpp/leveldb/.travis.yml +88 -0
  15. package/cpp/leveldb/AUTHORS +12 -0
  16. package/cpp/leveldb/CMakeLists.txt +495 -0
  17. package/cpp/leveldb/CONTRIBUTING.md +36 -0
  18. package/cpp/leveldb/LICENSE +27 -0
  19. package/cpp/leveldb/NEWS +17 -0
  20. package/cpp/leveldb/README.md +231 -0
  21. package/cpp/leveldb/TODO +14 -0
  22. package/cpp/leveldb/benchmarks/db_bench.cc +990 -0
  23. package/cpp/leveldb/benchmarks/db_bench_sqlite3.cc +726 -0
  24. package/cpp/leveldb/benchmarks/db_bench_tree_db.cc +531 -0
  25. package/cpp/leveldb/cmake/leveldbConfig.cmake.in +9 -0
  26. package/cpp/leveldb/db/autocompact_test.cc +115 -0
  27. package/cpp/leveldb/db/builder.cc +82 -0
  28. package/cpp/leveldb/db/builder.h +30 -0
  29. package/cpp/leveldb/db/c.cc +562 -0
  30. package/cpp/leveldb/db/c_test.c +384 -0
  31. package/cpp/leveldb/db/corruption_test.cc +367 -0
  32. package/cpp/leveldb/db/db_impl.cc +1554 -0
  33. package/cpp/leveldb/db/db_impl.h +217 -0
  34. package/cpp/leveldb/db/db_iter.cc +318 -0
  35. package/cpp/leveldb/db/db_iter.h +26 -0
  36. package/cpp/leveldb/db/db_test.cc +2305 -0
  37. package/cpp/leveldb/db/dbformat.cc +136 -0
  38. package/cpp/leveldb/db/dbformat.h +224 -0
  39. package/cpp/leveldb/db/dbformat_test.cc +133 -0
  40. package/cpp/leveldb/db/dumpfile.cc +232 -0
  41. package/cpp/leveldb/db/fault_injection_test.cc +555 -0
  42. package/cpp/leveldb/db/filename.cc +141 -0
  43. package/cpp/leveldb/db/filename.h +83 -0
  44. package/cpp/leveldb/db/filename_test.cc +132 -0
  45. package/cpp/leveldb/db/leveldbutil.cc +64 -0
  46. package/cpp/leveldb/db/log_format.h +35 -0
  47. package/cpp/leveldb/db/log_reader.cc +274 -0
  48. package/cpp/leveldb/db/log_reader.h +112 -0
  49. package/cpp/leveldb/db/log_test.cc +563 -0
  50. package/cpp/leveldb/db/log_writer.cc +111 -0
  51. package/cpp/leveldb/db/log_writer.h +54 -0
  52. package/cpp/leveldb/db/memtable.cc +137 -0
  53. package/cpp/leveldb/db/memtable.h +87 -0
  54. package/cpp/leveldb/db/recovery_test.cc +339 -0
  55. package/cpp/leveldb/db/repair.cc +451 -0
  56. package/cpp/leveldb/db/skiplist.h +382 -0
  57. package/cpp/leveldb/db/skiplist_test.cc +373 -0
  58. package/cpp/leveldb/db/snapshot.h +95 -0
  59. package/cpp/leveldb/db/table_cache.cc +120 -0
  60. package/cpp/leveldb/db/table_cache.h +57 -0
  61. package/cpp/leveldb/db/version_edit.cc +257 -0
  62. package/cpp/leveldb/db/version_edit.h +106 -0
  63. package/cpp/leveldb/db/version_edit_test.cc +46 -0
  64. package/cpp/leveldb/db/version_set.cc +1562 -0
  65. package/cpp/leveldb/db/version_set.h +393 -0
  66. package/cpp/leveldb/db/version_set_test.cc +336 -0
  67. package/cpp/leveldb/db/write_batch.cc +150 -0
  68. package/cpp/leveldb/db/write_batch_internal.h +45 -0
  69. package/cpp/leveldb/db/write_batch_test.cc +137 -0
  70. package/cpp/leveldb/doc/benchmark.html +459 -0
  71. package/cpp/leveldb/doc/impl.md +172 -0
  72. package/cpp/leveldb/doc/index.md +523 -0
  73. package/cpp/leveldb/doc/log_format.md +75 -0
  74. package/cpp/leveldb/doc/table_format.md +107 -0
  75. package/cpp/leveldb/helpers/memenv/memenv.cc +390 -0
  76. package/cpp/leveldb/helpers/memenv/memenv.h +22 -0
  77. package/cpp/leveldb/helpers/memenv/memenv_test.cc +264 -0
  78. package/cpp/leveldb/include/leveldb/c.h +270 -0
  79. package/cpp/leveldb/include/leveldb/cache.h +111 -0
  80. package/cpp/leveldb/include/leveldb/comparator.h +64 -0
  81. package/cpp/leveldb/include/leveldb/db.h +167 -0
  82. package/cpp/leveldb/include/leveldb/dumpfile.h +28 -0
  83. package/cpp/leveldb/include/leveldb/env.h +417 -0
  84. package/cpp/leveldb/include/leveldb/export.h +33 -0
  85. package/cpp/leveldb/include/leveldb/filter_policy.h +72 -0
  86. package/cpp/leveldb/include/leveldb/iterator.h +112 -0
  87. package/cpp/leveldb/include/leveldb/options.h +187 -0
  88. package/cpp/leveldb/include/leveldb/slice.h +114 -0
  89. package/cpp/leveldb/include/leveldb/status.h +122 -0
  90. package/cpp/leveldb/include/leveldb/table.h +84 -0
  91. package/cpp/leveldb/include/leveldb/table_builder.h +93 -0
  92. package/cpp/leveldb/include/leveldb/write_batch.h +83 -0
  93. package/cpp/leveldb/issues/issue178_test.cc +90 -0
  94. package/cpp/leveldb/issues/issue200_test.cc +59 -0
  95. package/cpp/leveldb/issues/issue320_test.cc +131 -0
  96. package/cpp/leveldb/port/README.md +10 -0
  97. package/cpp/leveldb/port/port.h +19 -0
  98. package/cpp/leveldb/port/port_config.h.in +33 -0
  99. package/cpp/leveldb/port/port_example.h +100 -0
  100. package/cpp/leveldb/port/port_stdcxx.h +151 -0
  101. package/cpp/leveldb/port/thread_annotations.h +108 -0
  102. package/cpp/leveldb/table/block.cc +267 -0
  103. package/cpp/leveldb/table/block.h +44 -0
  104. package/cpp/leveldb/table/block_builder.cc +107 -0
  105. package/cpp/leveldb/table/block_builder.h +54 -0
  106. package/cpp/leveldb/table/filter_block.cc +106 -0
  107. package/cpp/leveldb/table/filter_block.h +68 -0
  108. package/cpp/leveldb/table/filter_block_test.cc +127 -0
  109. package/cpp/leveldb/table/format.cc +141 -0
  110. package/cpp/leveldb/table/format.h +99 -0
  111. package/cpp/leveldb/table/iterator.cc +76 -0
  112. package/cpp/leveldb/table/iterator_wrapper.h +92 -0
  113. package/cpp/leveldb/table/merger.cc +191 -0
  114. package/cpp/leveldb/table/merger.h +26 -0
  115. package/cpp/leveldb/table/table.cc +271 -0
  116. package/cpp/leveldb/table/table_builder.cc +265 -0
  117. package/cpp/leveldb/table/table_test.cc +834 -0
  118. package/cpp/leveldb/table/two_level_iterator.cc +171 -0
  119. package/cpp/leveldb/table/two_level_iterator.h +31 -0
  120. package/cpp/leveldb/third_party/benchmark/.clang-format +5 -0
  121. package/cpp/leveldb/third_party/benchmark/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
  122. package/cpp/leveldb/third_party/benchmark/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  123. package/cpp/leveldb/third_party/benchmark/.github/workflows/build-and-test.yml +38 -0
  124. package/cpp/leveldb/third_party/benchmark/.github/workflows/pylint.yml +26 -0
  125. package/cpp/leveldb/third_party/benchmark/.github/workflows/test_bindings.yml +24 -0
  126. package/cpp/leveldb/third_party/benchmark/.travis-libcxx-setup.sh +28 -0
  127. package/cpp/leveldb/third_party/benchmark/.travis.yml +231 -0
  128. package/cpp/leveldb/third_party/benchmark/.ycm_extra_conf.py +115 -0
  129. package/cpp/leveldb/third_party/benchmark/AUTHORS +58 -0
  130. package/cpp/leveldb/third_party/benchmark/BUILD.bazel +44 -0
  131. package/cpp/leveldb/third_party/benchmark/CMakeLists.txt +287 -0
  132. package/cpp/leveldb/third_party/benchmark/CONTRIBUTING.md +58 -0
  133. package/cpp/leveldb/third_party/benchmark/CONTRIBUTORS +83 -0
  134. package/cpp/leveldb/third_party/benchmark/LICENSE +202 -0
  135. package/cpp/leveldb/third_party/benchmark/README.md +1323 -0
  136. package/cpp/leveldb/third_party/benchmark/WORKSPACE +51 -0
  137. package/cpp/leveldb/third_party/benchmark/_config.yml +1 -0
  138. package/cpp/leveldb/third_party/benchmark/appveyor.yml +50 -0
  139. package/cpp/leveldb/third_party/benchmark/bindings/python/BUILD +3 -0
  140. package/cpp/leveldb/third_party/benchmark/bindings/python/build_defs.bzl +25 -0
  141. package/cpp/leveldb/third_party/benchmark/bindings/python/google_benchmark/BUILD +38 -0
  142. package/cpp/leveldb/third_party/benchmark/bindings/python/google_benchmark/__init__.py +156 -0
  143. package/cpp/leveldb/third_party/benchmark/bindings/python/google_benchmark/benchmark.cc +180 -0
  144. package/cpp/leveldb/third_party/benchmark/bindings/python/google_benchmark/example.py +136 -0
  145. package/cpp/leveldb/third_party/benchmark/bindings/python/pybind11.BUILD +20 -0
  146. package/cpp/leveldb/third_party/benchmark/bindings/python/python_headers.BUILD +6 -0
  147. package/cpp/leveldb/third_party/benchmark/bindings/python/requirements.txt +2 -0
  148. package/cpp/leveldb/third_party/benchmark/cmake/AddCXXCompilerFlag.cmake +74 -0
  149. package/cpp/leveldb/third_party/benchmark/cmake/CXXFeatureCheck.cmake +69 -0
  150. package/cpp/leveldb/third_party/benchmark/cmake/Config.cmake.in +1 -0
  151. package/cpp/leveldb/third_party/benchmark/cmake/GetGitVersion.cmake +54 -0
  152. package/cpp/leveldb/third_party/benchmark/cmake/GoogleTest.cmake +41 -0
  153. package/cpp/leveldb/third_party/benchmark/cmake/GoogleTest.cmake.in +58 -0
  154. package/cpp/leveldb/third_party/benchmark/cmake/benchmark.pc.in +12 -0
  155. package/cpp/leveldb/third_party/benchmark/cmake/gnu_posix_regex.cpp +12 -0
  156. package/cpp/leveldb/third_party/benchmark/cmake/llvm-toolchain.cmake +8 -0
  157. package/cpp/leveldb/third_party/benchmark/cmake/posix_regex.cpp +14 -0
  158. package/cpp/leveldb/third_party/benchmark/cmake/split_list.cmake +3 -0
  159. package/cpp/leveldb/third_party/benchmark/cmake/std_regex.cpp +10 -0
  160. package/cpp/leveldb/third_party/benchmark/cmake/steady_clock.cpp +7 -0
  161. package/cpp/leveldb/third_party/benchmark/cmake/thread_safety_attributes.cpp +4 -0
  162. package/cpp/leveldb/third_party/benchmark/conan/CMakeLists.txt +7 -0
  163. package/cpp/leveldb/third_party/benchmark/conan/test_package/CMakeLists.txt +10 -0
  164. package/cpp/leveldb/third_party/benchmark/conan/test_package/conanfile.py +19 -0
  165. package/cpp/leveldb/third_party/benchmark/conan/test_package/test_package.cpp +18 -0
  166. package/cpp/leveldb/third_party/benchmark/conanfile.py +79 -0
  167. package/cpp/leveldb/third_party/benchmark/dependencies.md +18 -0
  168. package/cpp/leveldb/third_party/benchmark/docs/AssemblyTests.md +147 -0
  169. package/cpp/leveldb/third_party/benchmark/docs/_config.yml +1 -0
  170. package/cpp/leveldb/third_party/benchmark/docs/releasing.md +16 -0
  171. package/cpp/leveldb/third_party/benchmark/docs/tools.md +203 -0
  172. package/cpp/leveldb/third_party/benchmark/include/benchmark/benchmark.h +1604 -0
  173. package/cpp/leveldb/third_party/benchmark/requirements.txt +2 -0
  174. package/cpp/leveldb/third_party/benchmark/setup.py +140 -0
  175. package/cpp/leveldb/third_party/benchmark/src/CMakeLists.txt +114 -0
  176. package/cpp/leveldb/third_party/benchmark/src/arraysize.h +33 -0
  177. package/cpp/leveldb/third_party/benchmark/src/benchmark.cc +499 -0
  178. package/cpp/leveldb/third_party/benchmark/src/benchmark_api_internal.cc +15 -0
  179. package/cpp/leveldb/third_party/benchmark/src/benchmark_api_internal.h +53 -0
  180. package/cpp/leveldb/third_party/benchmark/src/benchmark_main.cc +17 -0
  181. package/cpp/leveldb/third_party/benchmark/src/benchmark_name.cc +58 -0
  182. package/cpp/leveldb/third_party/benchmark/src/benchmark_register.cc +515 -0
  183. package/cpp/leveldb/third_party/benchmark/src/benchmark_register.h +108 -0
  184. package/cpp/leveldb/third_party/benchmark/src/benchmark_runner.cc +362 -0
  185. package/cpp/leveldb/third_party/benchmark/src/benchmark_runner.h +51 -0
  186. package/cpp/leveldb/third_party/benchmark/src/check.h +82 -0
  187. package/cpp/leveldb/third_party/benchmark/src/colorprint.cc +188 -0
  188. package/cpp/leveldb/third_party/benchmark/src/colorprint.h +33 -0
  189. package/cpp/leveldb/third_party/benchmark/src/commandlineflags.cc +228 -0
  190. package/cpp/leveldb/third_party/benchmark/src/commandlineflags.h +103 -0
  191. package/cpp/leveldb/third_party/benchmark/src/complexity.cc +238 -0
  192. package/cpp/leveldb/third_party/benchmark/src/complexity.h +55 -0
  193. package/cpp/leveldb/third_party/benchmark/src/console_reporter.cc +177 -0
  194. package/cpp/leveldb/third_party/benchmark/src/counter.cc +80 -0
  195. package/cpp/leveldb/third_party/benchmark/src/counter.h +32 -0
  196. package/cpp/leveldb/third_party/benchmark/src/csv_reporter.cc +154 -0
  197. package/cpp/leveldb/third_party/benchmark/src/cycleclock.h +211 -0
  198. package/cpp/leveldb/third_party/benchmark/src/internal_macros.h +102 -0
  199. package/cpp/leveldb/third_party/benchmark/src/json_reporter.cc +255 -0
  200. package/cpp/leveldb/third_party/benchmark/src/log.h +74 -0
  201. package/cpp/leveldb/third_party/benchmark/src/mutex.h +155 -0
  202. package/cpp/leveldb/third_party/benchmark/src/re.h +158 -0
  203. package/cpp/leveldb/third_party/benchmark/src/reporter.cc +105 -0
  204. package/cpp/leveldb/third_party/benchmark/src/sleep.cc +67 -0
  205. package/cpp/leveldb/third_party/benchmark/src/sleep.h +15 -0
  206. package/cpp/leveldb/third_party/benchmark/src/statistics.cc +193 -0
  207. package/cpp/leveldb/third_party/benchmark/src/statistics.h +37 -0
  208. package/cpp/leveldb/third_party/benchmark/src/string_util.cc +255 -0
  209. package/cpp/leveldb/third_party/benchmark/src/string_util.h +59 -0
  210. package/cpp/leveldb/third_party/benchmark/src/sysinfo.cc +716 -0
  211. package/cpp/leveldb/third_party/benchmark/src/thread_manager.h +64 -0
  212. package/cpp/leveldb/third_party/benchmark/src/thread_timer.h +86 -0
  213. package/cpp/leveldb/third_party/benchmark/src/timers.cc +245 -0
  214. package/cpp/leveldb/third_party/benchmark/src/timers.h +48 -0
  215. package/cpp/leveldb/third_party/benchmark/test/AssemblyTests.cmake +46 -0
  216. package/cpp/leveldb/third_party/benchmark/test/BUILD +73 -0
  217. package/cpp/leveldb/third_party/benchmark/test/CMakeLists.txt +263 -0
  218. package/cpp/leveldb/third_party/benchmark/test/args_product_test.cc +77 -0
  219. package/cpp/leveldb/third_party/benchmark/test/basic_test.cc +136 -0
  220. package/cpp/leveldb/third_party/benchmark/test/benchmark_gtest.cc +134 -0
  221. package/cpp/leveldb/third_party/benchmark/test/benchmark_name_gtest.cc +74 -0
  222. package/cpp/leveldb/third_party/benchmark/test/benchmark_test.cc +245 -0
  223. package/cpp/leveldb/third_party/benchmark/test/clobber_memory_assembly_test.cc +64 -0
  224. package/cpp/leveldb/third_party/benchmark/test/commandlineflags_gtest.cc +201 -0
  225. package/cpp/leveldb/third_party/benchmark/test/complexity_test.cc +213 -0
  226. package/cpp/leveldb/third_party/benchmark/test/cxx03_test.cc +63 -0
  227. package/cpp/leveldb/third_party/benchmark/test/diagnostics_test.cc +80 -0
  228. package/cpp/leveldb/third_party/benchmark/test/display_aggregates_only_test.cc +43 -0
  229. package/cpp/leveldb/third_party/benchmark/test/donotoptimize_assembly_test.cc +163 -0
  230. package/cpp/leveldb/third_party/benchmark/test/donotoptimize_test.cc +52 -0
  231. package/cpp/leveldb/third_party/benchmark/test/filter_test.cc +104 -0
  232. package/cpp/leveldb/third_party/benchmark/test/fixture_test.cc +51 -0
  233. package/cpp/leveldb/third_party/benchmark/test/internal_threading_test.cc +184 -0
  234. package/cpp/leveldb/third_party/benchmark/test/link_main_test.cc +8 -0
  235. package/cpp/leveldb/third_party/benchmark/test/map_test.cc +57 -0
  236. package/cpp/leveldb/third_party/benchmark/test/memory_manager_test.cc +44 -0
  237. package/cpp/leveldb/third_party/benchmark/test/multiple_ranges_test.cc +96 -0
  238. package/cpp/leveldb/third_party/benchmark/test/options_test.cc +75 -0
  239. package/cpp/leveldb/third_party/benchmark/test/output_test.h +213 -0
  240. package/cpp/leveldb/third_party/benchmark/test/output_test_helper.cc +515 -0
  241. package/cpp/leveldb/third_party/benchmark/test/register_benchmark_test.cc +184 -0
  242. package/cpp/leveldb/third_party/benchmark/test/report_aggregates_only_test.cc +39 -0
  243. package/cpp/leveldb/third_party/benchmark/test/reporter_output_test.cc +747 -0
  244. package/cpp/leveldb/third_party/benchmark/test/skip_with_error_test.cc +195 -0
  245. package/cpp/leveldb/third_party/benchmark/test/state_assembly_test.cc +68 -0
  246. package/cpp/leveldb/third_party/benchmark/test/statistics_gtest.cc +28 -0
  247. package/cpp/leveldb/third_party/benchmark/test/string_util_gtest.cc +153 -0
  248. package/cpp/leveldb/third_party/benchmark/test/templated_fixture_test.cc +28 -0
  249. package/cpp/leveldb/third_party/benchmark/test/user_counters_tabular_test.cc +285 -0
  250. package/cpp/leveldb/third_party/benchmark/test/user_counters_test.cc +531 -0
  251. package/cpp/leveldb/third_party/benchmark/test/user_counters_thousands_test.cc +173 -0
  252. package/cpp/leveldb/third_party/benchmark/tools/BUILD.bazel +19 -0
  253. package/cpp/leveldb/third_party/benchmark/tools/compare.py +429 -0
  254. package/cpp/leveldb/third_party/benchmark/tools/gbench/Inputs/test1_run1.json +119 -0
  255. package/cpp/leveldb/third_party/benchmark/tools/gbench/Inputs/test1_run2.json +119 -0
  256. package/cpp/leveldb/third_party/benchmark/tools/gbench/Inputs/test2_run.json +81 -0
  257. package/cpp/leveldb/third_party/benchmark/tools/gbench/Inputs/test3_run0.json +65 -0
  258. package/cpp/leveldb/third_party/benchmark/tools/gbench/Inputs/test3_run1.json +65 -0
  259. package/cpp/leveldb/third_party/benchmark/tools/gbench/__init__.py +8 -0
  260. package/cpp/leveldb/third_party/benchmark/tools/gbench/report.py +903 -0
  261. package/cpp/leveldb/third_party/benchmark/tools/gbench/util.py +163 -0
  262. package/cpp/leveldb/third_party/benchmark/tools/requirements.txt +1 -0
  263. package/cpp/leveldb/third_party/benchmark/tools/strip_asm.py +151 -0
  264. package/cpp/leveldb/third_party/googletest/.clang-format +4 -0
  265. package/cpp/leveldb/third_party/googletest/.travis.yml +73 -0
  266. package/cpp/leveldb/third_party/googletest/BUILD.bazel +179 -0
  267. package/cpp/leveldb/third_party/googletest/CMakeLists.txt +36 -0
  268. package/cpp/leveldb/third_party/googletest/CONTRIBUTING.md +142 -0
  269. package/cpp/leveldb/third_party/googletest/LICENSE +28 -0
  270. package/cpp/leveldb/third_party/googletest/README.md +132 -0
  271. package/cpp/leveldb/third_party/googletest/WORKSPACE +23 -0
  272. package/cpp/leveldb/third_party/googletest/appveyor.yml +154 -0
  273. package/cpp/leveldb/third_party/googletest/ci/build-linux-bazel.sh +37 -0
  274. package/cpp/leveldb/third_party/googletest/ci/build-platformio.sh +2 -0
  275. package/cpp/leveldb/third_party/googletest/ci/env-linux.sh +41 -0
  276. package/cpp/leveldb/third_party/googletest/ci/env-osx.sh +47 -0
  277. package/cpp/leveldb/third_party/googletest/ci/get-nprocessors.sh +48 -0
  278. package/cpp/leveldb/third_party/googletest/ci/install-linux.sh +49 -0
  279. package/cpp/leveldb/third_party/googletest/ci/install-osx.sh +40 -0
  280. package/cpp/leveldb/third_party/googletest/ci/install-platformio.sh +5 -0
  281. package/cpp/leveldb/third_party/googletest/ci/log-config.sh +51 -0
  282. package/cpp/leveldb/third_party/googletest/ci/travis.sh +44 -0
  283. package/cpp/leveldb/third_party/googletest/googlemock/CMakeLists.txt +233 -0
  284. package/cpp/leveldb/third_party/googletest/googlemock/CONTRIBUTORS +40 -0
  285. package/cpp/leveldb/third_party/googletest/googlemock/LICENSE +28 -0
  286. package/cpp/leveldb/third_party/googletest/googlemock/README.md +44 -0
  287. package/cpp/leveldb/third_party/googletest/googlemock/cmake/gmock.pc.in +10 -0
  288. package/cpp/leveldb/third_party/googletest/googlemock/cmake/gmock_main.pc.in +10 -0
  289. package/cpp/leveldb/third_party/googletest/googlemock/docs/cheat_sheet.md +770 -0
  290. package/cpp/leveldb/third_party/googletest/googlemock/docs/cook_book.md +4270 -0
  291. package/cpp/leveldb/third_party/googletest/googlemock/docs/for_dummies.md +700 -0
  292. package/cpp/leveldb/third_party/googletest/googlemock/docs/gmock_faq.md +396 -0
  293. package/cpp/leveldb/third_party/googletest/googlemock/docs/pump_manual.md +187 -0
  294. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-actions.h +1193 -0
  295. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-cardinalities.h +157 -0
  296. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-function-mocker.h +276 -0
  297. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-actions.h +1884 -0
  298. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-actions.h.pump +627 -0
  299. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-function-mockers.h +752 -0
  300. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-function-mockers.h.pump +227 -0
  301. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-matchers.h +1097 -0
  302. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-matchers.h.pump +346 -0
  303. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-matchers.h +4591 -0
  304. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-more-actions.h +162 -0
  305. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-more-matchers.h +92 -0
  306. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-nice-strict.h +215 -0
  307. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-spec-builders.h +1985 -0
  308. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock.h +101 -0
  309. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/custom/README.md +16 -0
  310. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h +10 -0
  311. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h.pump +12 -0
  312. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-matchers.h +36 -0
  313. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-port.h +39 -0
  314. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h +472 -0
  315. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/gmock-port.h +87 -0
  316. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/gmock-pp.h +271 -0
  317. package/cpp/leveldb/third_party/googletest/googlemock/scripts/README.md +5 -0
  318. package/cpp/leveldb/third_party/googletest/googlemock/scripts/fuse_gmock_files.py +240 -0
  319. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/LICENSE +203 -0
  320. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/README +34 -0
  321. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/README.cppclean +115 -0
  322. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/__init__.py +0 -0
  323. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/ast.py +1761 -0
  324. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/gmock_class.py +248 -0
  325. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/gmock_class_test.py +540 -0
  326. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/keywords.py +56 -0
  327. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/tokenize.py +284 -0
  328. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/utils.py +37 -0
  329. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/gmock_gen.py +30 -0
  330. package/cpp/leveldb/third_party/googletest/googlemock/scripts/pump.py +856 -0
  331. package/cpp/leveldb/third_party/googletest/googlemock/src/gmock-all.cc +46 -0
  332. package/cpp/leveldb/third_party/googletest/googlemock/src/gmock-cardinalities.cc +155 -0
  333. package/cpp/leveldb/third_party/googletest/googlemock/src/gmock-internal-utils.cc +200 -0
  334. package/cpp/leveldb/third_party/googletest/googlemock/src/gmock-matchers.cc +462 -0
  335. package/cpp/leveldb/third_party/googletest/googlemock/src/gmock-spec-builders.cc +892 -0
  336. package/cpp/leveldb/third_party/googletest/googlemock/src/gmock.cc +213 -0
  337. package/cpp/leveldb/third_party/googletest/googlemock/src/gmock_main.cc +72 -0
  338. package/cpp/leveldb/third_party/googletest/googlemock/test/BUILD.bazel +110 -0
  339. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-actions_test.cc +1507 -0
  340. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-cardinalities_test.cc +429 -0
  341. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-function-mocker_nc.cc +16 -0
  342. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-function-mocker_nc_test.py +43 -0
  343. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-function-mocker_test.cc +696 -0
  344. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-generated-actions_test.cc +1064 -0
  345. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-generated-function-mockers_test.cc +659 -0
  346. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-generated-matchers_test.cc +1323 -0
  347. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-internal-utils_test.cc +732 -0
  348. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-matchers_test.cc +6913 -0
  349. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-more-actions_test.cc +698 -0
  350. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-nice-strict_test.cc +500 -0
  351. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-port_test.cc +42 -0
  352. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-pp-string_test.cc +206 -0
  353. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-pp_test.cc +83 -0
  354. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-spec-builders_test.cc +2775 -0
  355. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_all_test.cc +49 -0
  356. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_ex_test.cc +80 -0
  357. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_leak_test.py +104 -0
  358. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_leak_test_.cc +99 -0
  359. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_link2_test.cc +39 -0
  360. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_link_test.cc +39 -0
  361. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_link_test.h +690 -0
  362. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_output_test.py +183 -0
  363. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_output_test_.cc +309 -0
  364. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_output_test_golden.txt +317 -0
  365. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_stress_test.cc +240 -0
  366. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_test.cc +181 -0
  367. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_test_utils.py +108 -0
  368. package/cpp/leveldb/third_party/googletest/googlemock/test/pump_test.py +182 -0
  369. package/cpp/leveldb/third_party/googletest/googletest/CMakeLists.txt +329 -0
  370. package/cpp/leveldb/third_party/googletest/googletest/CONTRIBUTORS +38 -0
  371. package/cpp/leveldb/third_party/googletest/googletest/LICENSE +28 -0
  372. package/cpp/leveldb/third_party/googletest/googletest/README.md +244 -0
  373. package/cpp/leveldb/third_party/googletest/googletest/cmake/Config.cmake.in +9 -0
  374. package/cpp/leveldb/third_party/googletest/googletest/cmake/gtest.pc.in +9 -0
  375. package/cpp/leveldb/third_party/googletest/googletest/cmake/gtest_main.pc.in +10 -0
  376. package/cpp/leveldb/third_party/googletest/googletest/cmake/internal_utils.cmake +358 -0
  377. package/cpp/leveldb/third_party/googletest/googletest/cmake/libgtest.la.in +21 -0
  378. package/cpp/leveldb/third_party/googletest/googletest/docs/advanced.md +2567 -0
  379. package/cpp/leveldb/third_party/googletest/googletest/docs/faq.md +753 -0
  380. package/cpp/leveldb/third_party/googletest/googletest/docs/pkgconfig.md +219 -0
  381. package/cpp/leveldb/third_party/googletest/googletest/docs/primer.md +579 -0
  382. package/cpp/leveldb/third_party/googletest/googletest/docs/samples.md +22 -0
  383. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-death-test.h +343 -0
  384. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-matchers.h +750 -0
  385. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-message.h +219 -0
  386. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-param-test.h +514 -0
  387. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-printers.h +928 -0
  388. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-spi.h +238 -0
  389. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-test-part.h +184 -0
  390. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-typed-test.h +337 -0
  391. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest.h +2477 -0
  392. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest_pred_impl.h +359 -0
  393. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest_prod.h +61 -0
  394. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/custom/README.md +56 -0
  395. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/custom/gtest-port.h +37 -0
  396. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/custom/gtest-printers.h +42 -0
  397. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/custom/gtest.h +37 -0
  398. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-death-test-internal.h +304 -0
  399. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-filepath.h +211 -0
  400. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-internal.h +1411 -0
  401. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-param-util.h +880 -0
  402. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-port-arch.h +111 -0
  403. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-port.h +2227 -0
  404. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-string.h +171 -0
  405. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-type-util.h +183 -0
  406. package/cpp/leveldb/third_party/googletest/googletest/samples/prime_tables.h +126 -0
  407. package/cpp/leveldb/third_party/googletest/googletest/samples/sample1.cc +66 -0
  408. package/cpp/leveldb/third_party/googletest/googletest/samples/sample1.h +41 -0
  409. package/cpp/leveldb/third_party/googletest/googletest/samples/sample10_unittest.cc +139 -0
  410. package/cpp/leveldb/third_party/googletest/googletest/samples/sample1_unittest.cc +151 -0
  411. package/cpp/leveldb/third_party/googletest/googletest/samples/sample2.cc +54 -0
  412. package/cpp/leveldb/third_party/googletest/googletest/samples/sample2.h +81 -0
  413. package/cpp/leveldb/third_party/googletest/googletest/samples/sample2_unittest.cc +107 -0
  414. package/cpp/leveldb/third_party/googletest/googletest/samples/sample3-inl.h +172 -0
  415. package/cpp/leveldb/third_party/googletest/googletest/samples/sample3_unittest.cc +149 -0
  416. package/cpp/leveldb/third_party/googletest/googletest/samples/sample4.cc +54 -0
  417. package/cpp/leveldb/third_party/googletest/googletest/samples/sample4.h +53 -0
  418. package/cpp/leveldb/third_party/googletest/googletest/samples/sample4_unittest.cc +53 -0
  419. package/cpp/leveldb/third_party/googletest/googletest/samples/sample5_unittest.cc +196 -0
  420. package/cpp/leveldb/third_party/googletest/googletest/samples/sample6_unittest.cc +224 -0
  421. package/cpp/leveldb/third_party/googletest/googletest/samples/sample7_unittest.cc +117 -0
  422. package/cpp/leveldb/third_party/googletest/googletest/samples/sample8_unittest.cc +154 -0
  423. package/cpp/leveldb/third_party/googletest/googletest/samples/sample9_unittest.cc +156 -0
  424. package/cpp/leveldb/third_party/googletest/googletest/scripts/README.md +5 -0
  425. package/cpp/leveldb/third_party/googletest/googletest/scripts/common.py +83 -0
  426. package/cpp/leveldb/third_party/googletest/googletest/scripts/fuse_gtest_files.py +253 -0
  427. package/cpp/leveldb/third_party/googletest/googletest/scripts/gen_gtest_pred_impl.py +734 -0
  428. package/cpp/leveldb/third_party/googletest/googletest/scripts/gtest-config.in +274 -0
  429. package/cpp/leveldb/third_party/googletest/googletest/scripts/release_docs.py +158 -0
  430. package/cpp/leveldb/third_party/googletest/googletest/scripts/run_with_path.py +32 -0
  431. package/cpp/leveldb/third_party/googletest/googletest/scripts/upload.py +1402 -0
  432. package/cpp/leveldb/third_party/googletest/googletest/scripts/upload_gtest.py +78 -0
  433. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-all.cc +48 -0
  434. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-death-test.cc +1653 -0
  435. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-filepath.cc +382 -0
  436. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-internal-inl.h +1211 -0
  437. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-matchers.cc +97 -0
  438. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-port.cc +1399 -0
  439. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-printers.cc +442 -0
  440. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-test-part.cc +108 -0
  441. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-typed-test.cc +118 -0
  442. package/cpp/leveldb/third_party/googletest/googletest/src/gtest.cc +6180 -0
  443. package/cpp/leveldb/third_party/googletest/googletest/src/gtest_main.cc +54 -0
  444. package/cpp/leveldb/third_party/googletest/googletest/test/BUILD.bazel +529 -0
  445. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-break-on-failure-unittest.py +208 -0
  446. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-break-on-failure-unittest_.cc +86 -0
  447. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-catch-exceptions-test.py +236 -0
  448. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-catch-exceptions-test_.cc +293 -0
  449. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-color-test.py +127 -0
  450. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-color-test_.cc +62 -0
  451. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-death-test-test.cc +1516 -0
  452. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-death-test_ex_test.cc +92 -0
  453. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-env-var-test.py +117 -0
  454. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-env-var-test_.cc +122 -0
  455. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-filepath-test.cc +649 -0
  456. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-filter-unittest.py +639 -0
  457. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-filter-unittest_.cc +137 -0
  458. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-json-outfiles-test.py +191 -0
  459. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-json-output-unittest.py +778 -0
  460. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-list-tests-unittest.py +205 -0
  461. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-list-tests-unittest_.cc +156 -0
  462. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-listener-test.cc +518 -0
  463. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-message-test.cc +158 -0
  464. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-options-test.cc +216 -0
  465. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-output-test-golden-lin.txt +1137 -0
  466. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-output-test.py +346 -0
  467. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-output-test_.cc +1149 -0
  468. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-invalid-name1-test.py +63 -0
  469. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-invalid-name1-test_.cc +50 -0
  470. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-invalid-name2-test.py +62 -0
  471. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-invalid-name2-test_.cc +55 -0
  472. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-test.cc +1086 -0
  473. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-test.h +51 -0
  474. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test2-test.cc +61 -0
  475. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-port-test.cc +1272 -0
  476. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-printers-test.cc +1619 -0
  477. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-shuffle-test.py +323 -0
  478. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-shuffle-test_.cc +101 -0
  479. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-test-part-test.cc +230 -0
  480. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-test2_test.cc +61 -0
  481. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-throw-on-failure-test.py +168 -0
  482. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-throw-on-failure-test_.cc +71 -0
  483. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-uninitialized-test.py +67 -0
  484. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-uninitialized-test_.cc +42 -0
  485. package/cpp/leveldb/third_party/googletest/googletest/test/gtest-typed-test2_test.cc +44 -0
  486. package/cpp/leveldb/third_party/googletest/googletest/test/gtest-typed-test_test.cc +462 -0
  487. package/cpp/leveldb/third_party/googletest/googletest/test/gtest-typed-test_test.h +65 -0
  488. package/cpp/leveldb/third_party/googletest/googletest/test/gtest-unittest-api_test.cc +341 -0
  489. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_all_test.cc +46 -0
  490. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_assert_by_exception_test.cc +116 -0
  491. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_environment_test.cc +188 -0
  492. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_help_test.py +170 -0
  493. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_help_test_.cc +45 -0
  494. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_json_test_utils.py +60 -0
  495. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_list_output_unittest.py +141 -0
  496. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_list_output_unittest_.cc +51 -0
  497. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_main_unittest.cc +44 -0
  498. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_no_test_unittest.cc +54 -0
  499. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_pred_impl_unittest.cc +2427 -0
  500. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_premature_exit_test.cc +126 -0
  501. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_prod_test.cc +56 -0
  502. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_repeat_test.cc +233 -0
  503. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_skip_check_output_test.py +59 -0
  504. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_skip_environment_check_output_test.py +54 -0
  505. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_skip_in_environment_setup_test.cc +49 -0
  506. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_skip_test.cc +55 -0
  507. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_sole_header_test.cc +56 -0
  508. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_stress_test.cc +248 -0
  509. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_test_macro_stack_footprint_test.cc +89 -0
  510. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_test_utils.py +314 -0
  511. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_testbridge_test.py +63 -0
  512. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_testbridge_test_.cc +43 -0
  513. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_throw_on_failure_ex_test.cc +90 -0
  514. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_unittest.cc +7496 -0
  515. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_outfile1_test_.cc +43 -0
  516. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_outfile2_test_.cc +43 -0
  517. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_outfiles_test.py +135 -0
  518. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_output_unittest.py +389 -0
  519. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_output_unittest_.cc +188 -0
  520. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_test_utils.py +196 -0
  521. package/cpp/leveldb/third_party/googletest/googletest/test/production.cc +35 -0
  522. package/cpp/leveldb/third_party/googletest/googletest/test/production.h +54 -0
  523. package/cpp/leveldb/third_party/googletest/library.json +66 -0
  524. package/cpp/leveldb/third_party/googletest/platformio.ini +47 -0
  525. package/cpp/leveldb/util/arena.cc +66 -0
  526. package/cpp/leveldb/util/arena.h +71 -0
  527. package/cpp/leveldb/util/arena_test.cc +66 -0
  528. package/cpp/leveldb/util/bloom.cc +92 -0
  529. package/cpp/leveldb/util/bloom_test.cc +159 -0
  530. package/cpp/leveldb/util/cache.cc +401 -0
  531. package/cpp/leveldb/util/cache_test.cc +229 -0
  532. package/cpp/leveldb/util/coding.cc +166 -0
  533. package/cpp/leveldb/util/coding.h +122 -0
  534. package/cpp/leveldb/util/coding_test.cc +198 -0
  535. package/cpp/leveldb/util/comparator.cc +75 -0
  536. package/cpp/leveldb/util/crc32c.cc +380 -0
  537. package/cpp/leveldb/util/crc32c.h +43 -0
  538. package/cpp/leveldb/util/crc32c_test.cc +61 -0
  539. package/cpp/leveldb/util/env.cc +108 -0
  540. package/cpp/leveldb/util/env_posix.cc +893 -0
  541. package/cpp/leveldb/util/env_posix_test.cc +353 -0
  542. package/cpp/leveldb/util/env_posix_test_helper.h +28 -0
  543. package/cpp/leveldb/util/env_test.cc +240 -0
  544. package/cpp/leveldb/util/env_windows.cc +796 -0
  545. package/cpp/leveldb/util/env_windows_test.cc +65 -0
  546. package/cpp/leveldb/util/env_windows_test_helper.h +25 -0
  547. package/cpp/leveldb/util/filter_policy.cc +11 -0
  548. package/cpp/leveldb/util/hash.cc +55 -0
  549. package/cpp/leveldb/util/hash.h +19 -0
  550. package/cpp/leveldb/util/hash_test.cc +46 -0
  551. package/cpp/leveldb/util/histogram.cc +272 -0
  552. package/cpp/leveldb/util/histogram.h +44 -0
  553. package/cpp/leveldb/util/logging.cc +82 -0
  554. package/cpp/leveldb/util/logging.h +44 -0
  555. package/cpp/leveldb/util/logging_test.cc +145 -0
  556. package/cpp/leveldb/util/mutexlock.h +39 -0
  557. package/cpp/leveldb/util/no_destructor.h +46 -0
  558. package/cpp/leveldb/util/no_destructor_test.cc +49 -0
  559. package/cpp/leveldb/util/options.cc +14 -0
  560. package/cpp/leveldb/util/posix_logger.h +130 -0
  561. package/cpp/leveldb/util/random.h +63 -0
  562. package/cpp/leveldb/util/status.cc +77 -0
  563. package/cpp/leveldb/util/status_test.cc +44 -0
  564. package/cpp/leveldb/util/testutil.cc +51 -0
  565. package/cpp/leveldb/util/testutil.h +82 -0
  566. package/cpp/leveldb/util/windows_logger.h +124 -0
  567. package/cpp/react-native-leveldb.cpp +694 -0
  568. package/cpp/react-native-leveldb.h +4 -0
  569. package/ios/Leveldb.h +9 -0
  570. package/ios/Leveldb.mm +35 -0
  571. package/ios/Leveldb.xcodeproj/project.pbxproj +288 -0
  572. package/lib/commonjs/fake.js +181 -0
  573. package/lib/commonjs/fake.js.map +1 -0
  574. package/lib/commonjs/fake.test.js +30 -0
  575. package/lib/commonjs/fake.test.js.map +1 -0
  576. package/lib/commonjs/index.js +172 -0
  577. package/lib/commonjs/index.js.map +1 -0
  578. package/lib/commonjs/package.json +1 -0
  579. package/lib/module/fake.js +171 -0
  580. package/lib/module/fake.js.map +1 -0
  581. package/lib/module/fake.test.js +30 -0
  582. package/lib/module/fake.test.js.map +1 -0
  583. package/lib/module/index.js +165 -0
  584. package/lib/module/index.js.map +1 -0
  585. package/lib/typescript/fake.d.ts +34 -0
  586. package/lib/typescript/fake.d.ts.map +1 -0
  587. package/lib/typescript/fake.test.d.ts +2 -0
  588. package/lib/typescript/fake.test.d.ts.map +1 -0
  589. package/lib/typescript/index.d.ts +72 -0
  590. package/lib/typescript/index.d.ts.map +1 -0
  591. package/package.json +157 -0
  592. package/rn-leveldb.podspec +30 -0
  593. package/src/fake.test.ts +37 -0
  594. package/src/fake.ts +203 -0
  595. package/src/index.ts +291 -0
@@ -0,0 +1,1137 @@
1
+ The non-test part of the code is expected to have 2 failures.
2
+
3
+ googletest-output-test_.cc:#: Failure
4
+ Value of: false
5
+ Actual: false
6
+ Expected: true
7
+ Stack trace: (omitted)
8
+
9
+ googletest-output-test_.cc:#: Failure
10
+ Expected equality of these values:
11
+ 2
12
+ 3
13
+ Stack trace: (omitted)
14
+
15
+ [==========] Running 84 tests from 39 test suites.
16
+ [----------] Global test environment set-up.
17
+ FooEnvironment::SetUp() called.
18
+ BarEnvironment::SetUp() called.
19
+ [----------] 1 test from ADeathTest
20
+ [ RUN ] ADeathTest.ShouldRunFirst
21
+ [ OK ] ADeathTest.ShouldRunFirst
22
+ [----------] 1 test from ATypedDeathTest/0, where TypeParam = int
23
+ [ RUN ] ATypedDeathTest/0.ShouldRunFirst
24
+ [ OK ] ATypedDeathTest/0.ShouldRunFirst
25
+ [----------] 1 test from ATypedDeathTest/1, where TypeParam = double
26
+ [ RUN ] ATypedDeathTest/1.ShouldRunFirst
27
+ [ OK ] ATypedDeathTest/1.ShouldRunFirst
28
+ [----------] 1 test from My/ATypeParamDeathTest/0, where TypeParam = int
29
+ [ RUN ] My/ATypeParamDeathTest/0.ShouldRunFirst
30
+ [ OK ] My/ATypeParamDeathTest/0.ShouldRunFirst
31
+ [----------] 1 test from My/ATypeParamDeathTest/1, where TypeParam = double
32
+ [ RUN ] My/ATypeParamDeathTest/1.ShouldRunFirst
33
+ [ OK ] My/ATypeParamDeathTest/1.ShouldRunFirst
34
+ [----------] 2 tests from PassingTest
35
+ [ RUN ] PassingTest.PassingTest1
36
+ [ OK ] PassingTest.PassingTest1
37
+ [ RUN ] PassingTest.PassingTest2
38
+ [ OK ] PassingTest.PassingTest2
39
+ [----------] 2 tests from NonfatalFailureTest
40
+ [ RUN ] NonfatalFailureTest.EscapesStringOperands
41
+ googletest-output-test_.cc:#: Failure
42
+ Expected equality of these values:
43
+ kGoldenString
44
+ Which is: "\"Line"
45
+ actual
46
+ Which is: "actual \"string\""
47
+ Stack trace: (omitted)
48
+
49
+ googletest-output-test_.cc:#: Failure
50
+ Expected equality of these values:
51
+ golden
52
+ Which is: "\"Line"
53
+ actual
54
+ Which is: "actual \"string\""
55
+ Stack trace: (omitted)
56
+
57
+ [ FAILED ] NonfatalFailureTest.EscapesStringOperands
58
+ [ RUN ] NonfatalFailureTest.DiffForLongStrings
59
+ googletest-output-test_.cc:#: Failure
60
+ Expected equality of these values:
61
+ golden_str
62
+ Which is: "\"Line\0 1\"\nLine 2"
63
+ "Line 2"
64
+ With diff:
65
+ @@ -1,2 @@
66
+ -\"Line\0 1\"
67
+ Line 2
68
+
69
+ Stack trace: (omitted)
70
+
71
+ [ FAILED ] NonfatalFailureTest.DiffForLongStrings
72
+ [----------] 3 tests from FatalFailureTest
73
+ [ RUN ] FatalFailureTest.FatalFailureInSubroutine
74
+ (expecting a failure that x should be 1)
75
+ googletest-output-test_.cc:#: Failure
76
+ Expected equality of these values:
77
+ 1
78
+ x
79
+ Which is: 2
80
+ Stack trace: (omitted)
81
+
82
+ [ FAILED ] FatalFailureTest.FatalFailureInSubroutine
83
+ [ RUN ] FatalFailureTest.FatalFailureInNestedSubroutine
84
+ (expecting a failure that x should be 1)
85
+ googletest-output-test_.cc:#: Failure
86
+ Expected equality of these values:
87
+ 1
88
+ x
89
+ Which is: 2
90
+ Stack trace: (omitted)
91
+
92
+ [ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine
93
+ [ RUN ] FatalFailureTest.NonfatalFailureInSubroutine
94
+ (expecting a failure on false)
95
+ googletest-output-test_.cc:#: Failure
96
+ Value of: false
97
+ Actual: false
98
+ Expected: true
99
+ Stack trace: (omitted)
100
+
101
+ [ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine
102
+ [----------] 1 test from LoggingTest
103
+ [ RUN ] LoggingTest.InterleavingLoggingAndAssertions
104
+ (expecting 2 failures on (3) >= (a[i]))
105
+ i == 0
106
+ i == 1
107
+ googletest-output-test_.cc:#: Failure
108
+ Expected: (3) >= (a[i]), actual: 3 vs 9
109
+ Stack trace: (omitted)
110
+
111
+ i == 2
112
+ i == 3
113
+ googletest-output-test_.cc:#: Failure
114
+ Expected: (3) >= (a[i]), actual: 3 vs 6
115
+ Stack trace: (omitted)
116
+
117
+ [ FAILED ] LoggingTest.InterleavingLoggingAndAssertions
118
+ [----------] 7 tests from SCOPED_TRACETest
119
+ [ RUN ] SCOPED_TRACETest.AcceptedValues
120
+ googletest-output-test_.cc:#: Failure
121
+ Failed
122
+ Just checking that all these values work fine.
123
+ Google Test trace:
124
+ googletest-output-test_.cc:#: (null)
125
+ googletest-output-test_.cc:#: 1337
126
+ googletest-output-test_.cc:#: std::string
127
+ googletest-output-test_.cc:#: literal string
128
+ Stack trace: (omitted)
129
+
130
+ [ FAILED ] SCOPED_TRACETest.AcceptedValues
131
+ [ RUN ] SCOPED_TRACETest.ObeysScopes
132
+ (expected to fail)
133
+ googletest-output-test_.cc:#: Failure
134
+ Failed
135
+ This failure is expected, and shouldn't have a trace.
136
+ Stack trace: (omitted)
137
+
138
+ googletest-output-test_.cc:#: Failure
139
+ Failed
140
+ This failure is expected, and should have a trace.
141
+ Google Test trace:
142
+ googletest-output-test_.cc:#: Expected trace
143
+ Stack trace: (omitted)
144
+
145
+ googletest-output-test_.cc:#: Failure
146
+ Failed
147
+ This failure is expected, and shouldn't have a trace.
148
+ Stack trace: (omitted)
149
+
150
+ [ FAILED ] SCOPED_TRACETest.ObeysScopes
151
+ [ RUN ] SCOPED_TRACETest.WorksInLoop
152
+ (expected to fail)
153
+ googletest-output-test_.cc:#: Failure
154
+ Expected equality of these values:
155
+ 2
156
+ n
157
+ Which is: 1
158
+ Google Test trace:
159
+ googletest-output-test_.cc:#: i = 1
160
+ Stack trace: (omitted)
161
+
162
+ googletest-output-test_.cc:#: Failure
163
+ Expected equality of these values:
164
+ 1
165
+ n
166
+ Which is: 2
167
+ Google Test trace:
168
+ googletest-output-test_.cc:#: i = 2
169
+ Stack trace: (omitted)
170
+
171
+ [ FAILED ] SCOPED_TRACETest.WorksInLoop
172
+ [ RUN ] SCOPED_TRACETest.WorksInSubroutine
173
+ (expected to fail)
174
+ googletest-output-test_.cc:#: Failure
175
+ Expected equality of these values:
176
+ 2
177
+ n
178
+ Which is: 1
179
+ Google Test trace:
180
+ googletest-output-test_.cc:#: n = 1
181
+ Stack trace: (omitted)
182
+
183
+ googletest-output-test_.cc:#: Failure
184
+ Expected equality of these values:
185
+ 1
186
+ n
187
+ Which is: 2
188
+ Google Test trace:
189
+ googletest-output-test_.cc:#: n = 2
190
+ Stack trace: (omitted)
191
+
192
+ [ FAILED ] SCOPED_TRACETest.WorksInSubroutine
193
+ [ RUN ] SCOPED_TRACETest.CanBeNested
194
+ (expected to fail)
195
+ googletest-output-test_.cc:#: Failure
196
+ Expected equality of these values:
197
+ 1
198
+ n
199
+ Which is: 2
200
+ Google Test trace:
201
+ googletest-output-test_.cc:#: n = 2
202
+ googletest-output-test_.cc:#:
203
+ Stack trace: (omitted)
204
+
205
+ [ FAILED ] SCOPED_TRACETest.CanBeNested
206
+ [ RUN ] SCOPED_TRACETest.CanBeRepeated
207
+ (expected to fail)
208
+ googletest-output-test_.cc:#: Failure
209
+ Failed
210
+ This failure is expected, and should contain trace point A.
211
+ Google Test trace:
212
+ googletest-output-test_.cc:#: A
213
+ Stack trace: (omitted)
214
+
215
+ googletest-output-test_.cc:#: Failure
216
+ Failed
217
+ This failure is expected, and should contain trace point A and B.
218
+ Google Test trace:
219
+ googletest-output-test_.cc:#: B
220
+ googletest-output-test_.cc:#: A
221
+ Stack trace: (omitted)
222
+
223
+ googletest-output-test_.cc:#: Failure
224
+ Failed
225
+ This failure is expected, and should contain trace point A, B, and C.
226
+ Google Test trace:
227
+ googletest-output-test_.cc:#: C
228
+ googletest-output-test_.cc:#: B
229
+ googletest-output-test_.cc:#: A
230
+ Stack trace: (omitted)
231
+
232
+ googletest-output-test_.cc:#: Failure
233
+ Failed
234
+ This failure is expected, and should contain trace point A, B, and D.
235
+ Google Test trace:
236
+ googletest-output-test_.cc:#: D
237
+ googletest-output-test_.cc:#: B
238
+ googletest-output-test_.cc:#: A
239
+ Stack trace: (omitted)
240
+
241
+ [ FAILED ] SCOPED_TRACETest.CanBeRepeated
242
+ [ RUN ] SCOPED_TRACETest.WorksConcurrently
243
+ (expecting 6 failures)
244
+ googletest-output-test_.cc:#: Failure
245
+ Failed
246
+ Expected failure #1 (in thread B, only trace B alive).
247
+ Google Test trace:
248
+ googletest-output-test_.cc:#: Trace B
249
+ Stack trace: (omitted)
250
+
251
+ googletest-output-test_.cc:#: Failure
252
+ Failed
253
+ Expected failure #2 (in thread A, trace A & B both alive).
254
+ Google Test trace:
255
+ googletest-output-test_.cc:#: Trace A
256
+ Stack trace: (omitted)
257
+
258
+ googletest-output-test_.cc:#: Failure
259
+ Failed
260
+ Expected failure #3 (in thread B, trace A & B both alive).
261
+ Google Test trace:
262
+ googletest-output-test_.cc:#: Trace B
263
+ Stack trace: (omitted)
264
+
265
+ googletest-output-test_.cc:#: Failure
266
+ Failed
267
+ Expected failure #4 (in thread B, only trace A alive).
268
+ Stack trace: (omitted)
269
+
270
+ googletest-output-test_.cc:#: Failure
271
+ Failed
272
+ Expected failure #5 (in thread A, only trace A alive).
273
+ Google Test trace:
274
+ googletest-output-test_.cc:#: Trace A
275
+ Stack trace: (omitted)
276
+
277
+ googletest-output-test_.cc:#: Failure
278
+ Failed
279
+ Expected failure #6 (in thread A, no trace alive).
280
+ Stack trace: (omitted)
281
+
282
+ [ FAILED ] SCOPED_TRACETest.WorksConcurrently
283
+ [----------] 1 test from ScopedTraceTest
284
+ [ RUN ] ScopedTraceTest.WithExplicitFileAndLine
285
+ googletest-output-test_.cc:#: Failure
286
+ Failed
287
+ Check that the trace is attached to a particular location.
288
+ Google Test trace:
289
+ explicit_file.cc:123: expected trace message
290
+ Stack trace: (omitted)
291
+
292
+ [ FAILED ] ScopedTraceTest.WithExplicitFileAndLine
293
+ [----------] 1 test from NonFatalFailureInFixtureConstructorTest
294
+ [ RUN ] NonFatalFailureInFixtureConstructorTest.FailureInConstructor
295
+ (expecting 5 failures)
296
+ googletest-output-test_.cc:#: Failure
297
+ Failed
298
+ Expected failure #1, in the test fixture c'tor.
299
+ Stack trace: (omitted)
300
+
301
+ googletest-output-test_.cc:#: Failure
302
+ Failed
303
+ Expected failure #2, in SetUp().
304
+ Stack trace: (omitted)
305
+
306
+ googletest-output-test_.cc:#: Failure
307
+ Failed
308
+ Expected failure #3, in the test body.
309
+ Stack trace: (omitted)
310
+
311
+ googletest-output-test_.cc:#: Failure
312
+ Failed
313
+ Expected failure #4, in TearDown.
314
+ Stack trace: (omitted)
315
+
316
+ googletest-output-test_.cc:#: Failure
317
+ Failed
318
+ Expected failure #5, in the test fixture d'tor.
319
+ Stack trace: (omitted)
320
+
321
+ [ FAILED ] NonFatalFailureInFixtureConstructorTest.FailureInConstructor
322
+ [----------] 1 test from FatalFailureInFixtureConstructorTest
323
+ [ RUN ] FatalFailureInFixtureConstructorTest.FailureInConstructor
324
+ (expecting 2 failures)
325
+ googletest-output-test_.cc:#: Failure
326
+ Failed
327
+ Expected failure #1, in the test fixture c'tor.
328
+ Stack trace: (omitted)
329
+
330
+ googletest-output-test_.cc:#: Failure
331
+ Failed
332
+ Expected failure #2, in the test fixture d'tor.
333
+ Stack trace: (omitted)
334
+
335
+ [ FAILED ] FatalFailureInFixtureConstructorTest.FailureInConstructor
336
+ [----------] 1 test from NonFatalFailureInSetUpTest
337
+ [ RUN ] NonFatalFailureInSetUpTest.FailureInSetUp
338
+ (expecting 4 failures)
339
+ googletest-output-test_.cc:#: Failure
340
+ Failed
341
+ Expected failure #1, in SetUp().
342
+ Stack trace: (omitted)
343
+
344
+ googletest-output-test_.cc:#: Failure
345
+ Failed
346
+ Expected failure #2, in the test function.
347
+ Stack trace: (omitted)
348
+
349
+ googletest-output-test_.cc:#: Failure
350
+ Failed
351
+ Expected failure #3, in TearDown().
352
+ Stack trace: (omitted)
353
+
354
+ googletest-output-test_.cc:#: Failure
355
+ Failed
356
+ Expected failure #4, in the test fixture d'tor.
357
+ Stack trace: (omitted)
358
+
359
+ [ FAILED ] NonFatalFailureInSetUpTest.FailureInSetUp
360
+ [----------] 1 test from FatalFailureInSetUpTest
361
+ [ RUN ] FatalFailureInSetUpTest.FailureInSetUp
362
+ (expecting 3 failures)
363
+ googletest-output-test_.cc:#: Failure
364
+ Failed
365
+ Expected failure #1, in SetUp().
366
+ Stack trace: (omitted)
367
+
368
+ googletest-output-test_.cc:#: Failure
369
+ Failed
370
+ Expected failure #2, in TearDown().
371
+ Stack trace: (omitted)
372
+
373
+ googletest-output-test_.cc:#: Failure
374
+ Failed
375
+ Expected failure #3, in the test fixture d'tor.
376
+ Stack trace: (omitted)
377
+
378
+ [ FAILED ] FatalFailureInSetUpTest.FailureInSetUp
379
+ [----------] 1 test from AddFailureAtTest
380
+ [ RUN ] AddFailureAtTest.MessageContainsSpecifiedFileAndLineNumber
381
+ foo.cc:42: Failure
382
+ Failed
383
+ Expected nonfatal failure in foo.cc
384
+ Stack trace: (omitted)
385
+
386
+ [ FAILED ] AddFailureAtTest.MessageContainsSpecifiedFileAndLineNumber
387
+ [----------] 1 test from GtestFailAtTest
388
+ [ RUN ] GtestFailAtTest.MessageContainsSpecifiedFileAndLineNumber
389
+ foo.cc:42: Failure
390
+ Failed
391
+ Expected fatal failure in foo.cc
392
+ Stack trace: (omitted)
393
+
394
+ [ FAILED ] GtestFailAtTest.MessageContainsSpecifiedFileAndLineNumber
395
+ [----------] 4 tests from MixedUpTestSuiteTest
396
+ [ RUN ] MixedUpTestSuiteTest.FirstTestFromNamespaceFoo
397
+ [ OK ] MixedUpTestSuiteTest.FirstTestFromNamespaceFoo
398
+ [ RUN ] MixedUpTestSuiteTest.SecondTestFromNamespaceFoo
399
+ [ OK ] MixedUpTestSuiteTest.SecondTestFromNamespaceFoo
400
+ [ RUN ] MixedUpTestSuiteTest.ThisShouldFail
401
+ gtest.cc:#: Failure
402
+ Failed
403
+ All tests in the same test suite must use the same test fixture
404
+ class. However, in test suite MixedUpTestSuiteTest,
405
+ you defined test FirstTestFromNamespaceFoo and test ThisShouldFail
406
+ using two different test fixture classes. This can happen if
407
+ the two classes are from different namespaces or translation
408
+ units and have the same name. You should probably rename one
409
+ of the classes to put the tests into different test suites.
410
+ Stack trace: (omitted)
411
+
412
+ [ FAILED ] MixedUpTestSuiteTest.ThisShouldFail
413
+ [ RUN ] MixedUpTestSuiteTest.ThisShouldFailToo
414
+ gtest.cc:#: Failure
415
+ Failed
416
+ All tests in the same test suite must use the same test fixture
417
+ class. However, in test suite MixedUpTestSuiteTest,
418
+ you defined test FirstTestFromNamespaceFoo and test ThisShouldFailToo
419
+ using two different test fixture classes. This can happen if
420
+ the two classes are from different namespaces or translation
421
+ units and have the same name. You should probably rename one
422
+ of the classes to put the tests into different test suites.
423
+ Stack trace: (omitted)
424
+
425
+ [ FAILED ] MixedUpTestSuiteTest.ThisShouldFailToo
426
+ [----------] 2 tests from MixedUpTestSuiteWithSameTestNameTest
427
+ [ RUN ] MixedUpTestSuiteWithSameTestNameTest.TheSecondTestWithThisNameShouldFail
428
+ [ OK ] MixedUpTestSuiteWithSameTestNameTest.TheSecondTestWithThisNameShouldFail
429
+ [ RUN ] MixedUpTestSuiteWithSameTestNameTest.TheSecondTestWithThisNameShouldFail
430
+ gtest.cc:#: Failure
431
+ Failed
432
+ All tests in the same test suite must use the same test fixture
433
+ class. However, in test suite MixedUpTestSuiteWithSameTestNameTest,
434
+ you defined test TheSecondTestWithThisNameShouldFail and test TheSecondTestWithThisNameShouldFail
435
+ using two different test fixture classes. This can happen if
436
+ the two classes are from different namespaces or translation
437
+ units and have the same name. You should probably rename one
438
+ of the classes to put the tests into different test suites.
439
+ Stack trace: (omitted)
440
+
441
+ [ FAILED ] MixedUpTestSuiteWithSameTestNameTest.TheSecondTestWithThisNameShouldFail
442
+ [----------] 2 tests from TEST_F_before_TEST_in_same_test_case
443
+ [ RUN ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTEST_F
444
+ [ OK ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTEST_F
445
+ [ RUN ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTESTAndShouldFail
446
+ gtest.cc:#: Failure
447
+ Failed
448
+ All tests in the same test suite must use the same test fixture
449
+ class, so mixing TEST_F and TEST in the same test suite is
450
+ illegal. In test suite TEST_F_before_TEST_in_same_test_case,
451
+ test DefinedUsingTEST_F is defined using TEST_F but
452
+ test DefinedUsingTESTAndShouldFail is defined using TEST. You probably
453
+ want to change the TEST to TEST_F or move it to another test
454
+ case.
455
+ Stack trace: (omitted)
456
+
457
+ [ FAILED ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTESTAndShouldFail
458
+ [----------] 2 tests from TEST_before_TEST_F_in_same_test_case
459
+ [ RUN ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST
460
+ [ OK ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST
461
+ [ RUN ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST_FAndShouldFail
462
+ gtest.cc:#: Failure
463
+ Failed
464
+ All tests in the same test suite must use the same test fixture
465
+ class, so mixing TEST_F and TEST in the same test suite is
466
+ illegal. In test suite TEST_before_TEST_F_in_same_test_case,
467
+ test DefinedUsingTEST_FAndShouldFail is defined using TEST_F but
468
+ test DefinedUsingTEST is defined using TEST. You probably
469
+ want to change the TEST to TEST_F or move it to another test
470
+ case.
471
+ Stack trace: (omitted)
472
+
473
+ [ FAILED ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST_FAndShouldFail
474
+ [----------] 8 tests from ExpectNonfatalFailureTest
475
+ [ RUN ] ExpectNonfatalFailureTest.CanReferenceGlobalVariables
476
+ [ OK ] ExpectNonfatalFailureTest.CanReferenceGlobalVariables
477
+ [ RUN ] ExpectNonfatalFailureTest.CanReferenceLocalVariables
478
+ [ OK ] ExpectNonfatalFailureTest.CanReferenceLocalVariables
479
+ [ RUN ] ExpectNonfatalFailureTest.SucceedsWhenThereIsOneNonfatalFailure
480
+ [ OK ] ExpectNonfatalFailureTest.SucceedsWhenThereIsOneNonfatalFailure
481
+ [ RUN ] ExpectNonfatalFailureTest.FailsWhenThereIsNoNonfatalFailure
482
+ (expecting a failure)
483
+ gtest.cc:#: Failure
484
+ Expected: 1 non-fatal failure
485
+ Actual: 0 failures
486
+ Stack trace: (omitted)
487
+
488
+ [ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereIsNoNonfatalFailure
489
+ [ RUN ] ExpectNonfatalFailureTest.FailsWhenThereAreTwoNonfatalFailures
490
+ (expecting a failure)
491
+ gtest.cc:#: Failure
492
+ Expected: 1 non-fatal failure
493
+ Actual: 2 failures
494
+ googletest-output-test_.cc:#: Non-fatal failure:
495
+ Failed
496
+ Expected non-fatal failure 1.
497
+ Stack trace: (omitted)
498
+
499
+
500
+ googletest-output-test_.cc:#: Non-fatal failure:
501
+ Failed
502
+ Expected non-fatal failure 2.
503
+ Stack trace: (omitted)
504
+
505
+
506
+ Stack trace: (omitted)
507
+
508
+ [ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereAreTwoNonfatalFailures
509
+ [ RUN ] ExpectNonfatalFailureTest.FailsWhenThereIsOneFatalFailure
510
+ (expecting a failure)
511
+ gtest.cc:#: Failure
512
+ Expected: 1 non-fatal failure
513
+ Actual:
514
+ googletest-output-test_.cc:#: Fatal failure:
515
+ Failed
516
+ Expected fatal failure.
517
+ Stack trace: (omitted)
518
+
519
+
520
+ Stack trace: (omitted)
521
+
522
+ [ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereIsOneFatalFailure
523
+ [ RUN ] ExpectNonfatalFailureTest.FailsWhenStatementReturns
524
+ (expecting a failure)
525
+ gtest.cc:#: Failure
526
+ Expected: 1 non-fatal failure
527
+ Actual: 0 failures
528
+ Stack trace: (omitted)
529
+
530
+ [ FAILED ] ExpectNonfatalFailureTest.FailsWhenStatementReturns
531
+ [ RUN ] ExpectNonfatalFailureTest.FailsWhenStatementThrows
532
+ (expecting a failure)
533
+ gtest.cc:#: Failure
534
+ Expected: 1 non-fatal failure
535
+ Actual: 0 failures
536
+ Stack trace: (omitted)
537
+
538
+ [ FAILED ] ExpectNonfatalFailureTest.FailsWhenStatementThrows
539
+ [----------] 8 tests from ExpectFatalFailureTest
540
+ [ RUN ] ExpectFatalFailureTest.CanReferenceGlobalVariables
541
+ [ OK ] ExpectFatalFailureTest.CanReferenceGlobalVariables
542
+ [ RUN ] ExpectFatalFailureTest.CanReferenceLocalStaticVariables
543
+ [ OK ] ExpectFatalFailureTest.CanReferenceLocalStaticVariables
544
+ [ RUN ] ExpectFatalFailureTest.SucceedsWhenThereIsOneFatalFailure
545
+ [ OK ] ExpectFatalFailureTest.SucceedsWhenThereIsOneFatalFailure
546
+ [ RUN ] ExpectFatalFailureTest.FailsWhenThereIsNoFatalFailure
547
+ (expecting a failure)
548
+ gtest.cc:#: Failure
549
+ Expected: 1 fatal failure
550
+ Actual: 0 failures
551
+ Stack trace: (omitted)
552
+
553
+ [ FAILED ] ExpectFatalFailureTest.FailsWhenThereIsNoFatalFailure
554
+ [ RUN ] ExpectFatalFailureTest.FailsWhenThereAreTwoFatalFailures
555
+ (expecting a failure)
556
+ gtest.cc:#: Failure
557
+ Expected: 1 fatal failure
558
+ Actual: 2 failures
559
+ googletest-output-test_.cc:#: Fatal failure:
560
+ Failed
561
+ Expected fatal failure.
562
+ Stack trace: (omitted)
563
+
564
+
565
+ googletest-output-test_.cc:#: Fatal failure:
566
+ Failed
567
+ Expected fatal failure.
568
+ Stack trace: (omitted)
569
+
570
+
571
+ Stack trace: (omitted)
572
+
573
+ [ FAILED ] ExpectFatalFailureTest.FailsWhenThereAreTwoFatalFailures
574
+ [ RUN ] ExpectFatalFailureTest.FailsWhenThereIsOneNonfatalFailure
575
+ (expecting a failure)
576
+ gtest.cc:#: Failure
577
+ Expected: 1 fatal failure
578
+ Actual:
579
+ googletest-output-test_.cc:#: Non-fatal failure:
580
+ Failed
581
+ Expected non-fatal failure.
582
+ Stack trace: (omitted)
583
+
584
+
585
+ Stack trace: (omitted)
586
+
587
+ [ FAILED ] ExpectFatalFailureTest.FailsWhenThereIsOneNonfatalFailure
588
+ [ RUN ] ExpectFatalFailureTest.FailsWhenStatementReturns
589
+ (expecting a failure)
590
+ gtest.cc:#: Failure
591
+ Expected: 1 fatal failure
592
+ Actual: 0 failures
593
+ Stack trace: (omitted)
594
+
595
+ [ FAILED ] ExpectFatalFailureTest.FailsWhenStatementReturns
596
+ [ RUN ] ExpectFatalFailureTest.FailsWhenStatementThrows
597
+ (expecting a failure)
598
+ gtest.cc:#: Failure
599
+ Expected: 1 fatal failure
600
+ Actual: 0 failures
601
+ Stack trace: (omitted)
602
+
603
+ [ FAILED ] ExpectFatalFailureTest.FailsWhenStatementThrows
604
+ [----------] 2 tests from TypedTest/0, where TypeParam = int
605
+ [ RUN ] TypedTest/0.Success
606
+ [ OK ] TypedTest/0.Success
607
+ [ RUN ] TypedTest/0.Failure
608
+ googletest-output-test_.cc:#: Failure
609
+ Expected equality of these values:
610
+ 1
611
+ TypeParam()
612
+ Which is: 0
613
+ Expected failure
614
+ Stack trace: (omitted)
615
+
616
+ [ FAILED ] TypedTest/0.Failure, where TypeParam = int
617
+ [----------] 2 tests from TypedTestWithNames/char0, where TypeParam = char
618
+ [ RUN ] TypedTestWithNames/char0.Success
619
+ [ OK ] TypedTestWithNames/char0.Success
620
+ [ RUN ] TypedTestWithNames/char0.Failure
621
+ googletest-output-test_.cc:#: Failure
622
+ Failed
623
+ Stack trace: (omitted)
624
+
625
+ [ FAILED ] TypedTestWithNames/char0.Failure, where TypeParam = char
626
+ [----------] 2 tests from TypedTestWithNames/int1, where TypeParam = int
627
+ [ RUN ] TypedTestWithNames/int1.Success
628
+ [ OK ] TypedTestWithNames/int1.Success
629
+ [ RUN ] TypedTestWithNames/int1.Failure
630
+ googletest-output-test_.cc:#: Failure
631
+ Failed
632
+ Stack trace: (omitted)
633
+
634
+ [ FAILED ] TypedTestWithNames/int1.Failure, where TypeParam = int
635
+ [----------] 2 tests from Unsigned/TypedTestP/0, where TypeParam = unsigned char
636
+ [ RUN ] Unsigned/TypedTestP/0.Success
637
+ [ OK ] Unsigned/TypedTestP/0.Success
638
+ [ RUN ] Unsigned/TypedTestP/0.Failure
639
+ googletest-output-test_.cc:#: Failure
640
+ Expected equality of these values:
641
+ 1U
642
+ Which is: 1
643
+ TypeParam()
644
+ Which is: '\0'
645
+ Expected failure
646
+ Stack trace: (omitted)
647
+
648
+ [ FAILED ] Unsigned/TypedTestP/0.Failure, where TypeParam = unsigned char
649
+ [----------] 2 tests from Unsigned/TypedTestP/1, where TypeParam = unsigned int
650
+ [ RUN ] Unsigned/TypedTestP/1.Success
651
+ [ OK ] Unsigned/TypedTestP/1.Success
652
+ [ RUN ] Unsigned/TypedTestP/1.Failure
653
+ googletest-output-test_.cc:#: Failure
654
+ Expected equality of these values:
655
+ 1U
656
+ Which is: 1
657
+ TypeParam()
658
+ Which is: 0
659
+ Expected failure
660
+ Stack trace: (omitted)
661
+
662
+ [ FAILED ] Unsigned/TypedTestP/1.Failure, where TypeParam = unsigned int
663
+ [----------] 2 tests from UnsignedCustomName/TypedTestP/unsignedChar0, where TypeParam = unsigned char
664
+ [ RUN ] UnsignedCustomName/TypedTestP/unsignedChar0.Success
665
+ [ OK ] UnsignedCustomName/TypedTestP/unsignedChar0.Success
666
+ [ RUN ] UnsignedCustomName/TypedTestP/unsignedChar0.Failure
667
+ googletest-output-test_.cc:#: Failure
668
+ Expected equality of these values:
669
+ 1U
670
+ Which is: 1
671
+ TypeParam()
672
+ Which is: '\0'
673
+ Expected failure
674
+ Stack trace: (omitted)
675
+
676
+ [ FAILED ] UnsignedCustomName/TypedTestP/unsignedChar0.Failure, where TypeParam = unsigned char
677
+ [----------] 2 tests from UnsignedCustomName/TypedTestP/unsignedInt1, where TypeParam = unsigned int
678
+ [ RUN ] UnsignedCustomName/TypedTestP/unsignedInt1.Success
679
+ [ OK ] UnsignedCustomName/TypedTestP/unsignedInt1.Success
680
+ [ RUN ] UnsignedCustomName/TypedTestP/unsignedInt1.Failure
681
+ googletest-output-test_.cc:#: Failure
682
+ Expected equality of these values:
683
+ 1U
684
+ Which is: 1
685
+ TypeParam()
686
+ Which is: 0
687
+ Expected failure
688
+ Stack trace: (omitted)
689
+
690
+ [ FAILED ] UnsignedCustomName/TypedTestP/unsignedInt1.Failure, where TypeParam = unsigned int
691
+ [----------] 4 tests from ExpectFailureTest
692
+ [ RUN ] ExpectFailureTest.ExpectFatalFailure
693
+ (expecting 1 failure)
694
+ gtest.cc:#: Failure
695
+ Expected: 1 fatal failure
696
+ Actual:
697
+ googletest-output-test_.cc:#: Success:
698
+ Succeeded
699
+ Stack trace: (omitted)
700
+
701
+
702
+ Stack trace: (omitted)
703
+
704
+ (expecting 1 failure)
705
+ gtest.cc:#: Failure
706
+ Expected: 1 fatal failure
707
+ Actual:
708
+ googletest-output-test_.cc:#: Non-fatal failure:
709
+ Failed
710
+ Expected non-fatal failure.
711
+ Stack trace: (omitted)
712
+
713
+
714
+ Stack trace: (omitted)
715
+
716
+ (expecting 1 failure)
717
+ gtest.cc:#: Failure
718
+ Expected: 1 fatal failure containing "Some other fatal failure expected."
719
+ Actual:
720
+ googletest-output-test_.cc:#: Fatal failure:
721
+ Failed
722
+ Expected fatal failure.
723
+ Stack trace: (omitted)
724
+
725
+
726
+ Stack trace: (omitted)
727
+
728
+ [ FAILED ] ExpectFailureTest.ExpectFatalFailure
729
+ [ RUN ] ExpectFailureTest.ExpectNonFatalFailure
730
+ (expecting 1 failure)
731
+ gtest.cc:#: Failure
732
+ Expected: 1 non-fatal failure
733
+ Actual:
734
+ googletest-output-test_.cc:#: Success:
735
+ Succeeded
736
+ Stack trace: (omitted)
737
+
738
+
739
+ Stack trace: (omitted)
740
+
741
+ (expecting 1 failure)
742
+ gtest.cc:#: Failure
743
+ Expected: 1 non-fatal failure
744
+ Actual:
745
+ googletest-output-test_.cc:#: Fatal failure:
746
+ Failed
747
+ Expected fatal failure.
748
+ Stack trace: (omitted)
749
+
750
+
751
+ Stack trace: (omitted)
752
+
753
+ (expecting 1 failure)
754
+ gtest.cc:#: Failure
755
+ Expected: 1 non-fatal failure containing "Some other non-fatal failure."
756
+ Actual:
757
+ googletest-output-test_.cc:#: Non-fatal failure:
758
+ Failed
759
+ Expected non-fatal failure.
760
+ Stack trace: (omitted)
761
+
762
+
763
+ Stack trace: (omitted)
764
+
765
+ [ FAILED ] ExpectFailureTest.ExpectNonFatalFailure
766
+ [ RUN ] ExpectFailureTest.ExpectFatalFailureOnAllThreads
767
+ (expecting 1 failure)
768
+ gtest.cc:#: Failure
769
+ Expected: 1 fatal failure
770
+ Actual:
771
+ googletest-output-test_.cc:#: Success:
772
+ Succeeded
773
+ Stack trace: (omitted)
774
+
775
+
776
+ Stack trace: (omitted)
777
+
778
+ (expecting 1 failure)
779
+ gtest.cc:#: Failure
780
+ Expected: 1 fatal failure
781
+ Actual:
782
+ googletest-output-test_.cc:#: Non-fatal failure:
783
+ Failed
784
+ Expected non-fatal failure.
785
+ Stack trace: (omitted)
786
+
787
+
788
+ Stack trace: (omitted)
789
+
790
+ (expecting 1 failure)
791
+ gtest.cc:#: Failure
792
+ Expected: 1 fatal failure containing "Some other fatal failure expected."
793
+ Actual:
794
+ googletest-output-test_.cc:#: Fatal failure:
795
+ Failed
796
+ Expected fatal failure.
797
+ Stack trace: (omitted)
798
+
799
+
800
+ Stack trace: (omitted)
801
+
802
+ [ FAILED ] ExpectFailureTest.ExpectFatalFailureOnAllThreads
803
+ [ RUN ] ExpectFailureTest.ExpectNonFatalFailureOnAllThreads
804
+ (expecting 1 failure)
805
+ gtest.cc:#: Failure
806
+ Expected: 1 non-fatal failure
807
+ Actual:
808
+ googletest-output-test_.cc:#: Success:
809
+ Succeeded
810
+ Stack trace: (omitted)
811
+
812
+
813
+ Stack trace: (omitted)
814
+
815
+ (expecting 1 failure)
816
+ gtest.cc:#: Failure
817
+ Expected: 1 non-fatal failure
818
+ Actual:
819
+ googletest-output-test_.cc:#: Fatal failure:
820
+ Failed
821
+ Expected fatal failure.
822
+ Stack trace: (omitted)
823
+
824
+
825
+ Stack trace: (omitted)
826
+
827
+ (expecting 1 failure)
828
+ gtest.cc:#: Failure
829
+ Expected: 1 non-fatal failure containing "Some other non-fatal failure."
830
+ Actual:
831
+ googletest-output-test_.cc:#: Non-fatal failure:
832
+ Failed
833
+ Expected non-fatal failure.
834
+ Stack trace: (omitted)
835
+
836
+
837
+ Stack trace: (omitted)
838
+
839
+ [ FAILED ] ExpectFailureTest.ExpectNonFatalFailureOnAllThreads
840
+ [----------] 2 tests from ExpectFailureWithThreadsTest
841
+ [ RUN ] ExpectFailureWithThreadsTest.ExpectFatalFailure
842
+ (expecting 2 failures)
843
+ googletest-output-test_.cc:#: Failure
844
+ Failed
845
+ Expected fatal failure.
846
+ Stack trace: (omitted)
847
+
848
+ gtest.cc:#: Failure
849
+ Expected: 1 fatal failure
850
+ Actual: 0 failures
851
+ Stack trace: (omitted)
852
+
853
+ [ FAILED ] ExpectFailureWithThreadsTest.ExpectFatalFailure
854
+ [ RUN ] ExpectFailureWithThreadsTest.ExpectNonFatalFailure
855
+ (expecting 2 failures)
856
+ googletest-output-test_.cc:#: Failure
857
+ Failed
858
+ Expected non-fatal failure.
859
+ Stack trace: (omitted)
860
+
861
+ gtest.cc:#: Failure
862
+ Expected: 1 non-fatal failure
863
+ Actual: 0 failures
864
+ Stack trace: (omitted)
865
+
866
+ [ FAILED ] ExpectFailureWithThreadsTest.ExpectNonFatalFailure
867
+ [----------] 1 test from ScopedFakeTestPartResultReporterTest
868
+ [ RUN ] ScopedFakeTestPartResultReporterTest.InterceptOnlyCurrentThread
869
+ (expecting 2 failures)
870
+ googletest-output-test_.cc:#: Failure
871
+ Failed
872
+ Expected fatal failure.
873
+ Stack trace: (omitted)
874
+
875
+ googletest-output-test_.cc:#: Failure
876
+ Failed
877
+ Expected non-fatal failure.
878
+ Stack trace: (omitted)
879
+
880
+ [ FAILED ] ScopedFakeTestPartResultReporterTest.InterceptOnlyCurrentThread
881
+ [----------] 2 tests from DynamicFixture
882
+ DynamicFixture::SetUpTestSuite
883
+ [ RUN ] DynamicFixture.DynamicTestPass
884
+ DynamicFixture()
885
+ DynamicFixture::SetUp
886
+ DynamicFixture::TearDown
887
+ ~DynamicFixture()
888
+ [ OK ] DynamicFixture.DynamicTestPass
889
+ [ RUN ] DynamicFixture.DynamicTestFail
890
+ DynamicFixture()
891
+ DynamicFixture::SetUp
892
+ googletest-output-test_.cc:#: Failure
893
+ Value of: Pass
894
+ Actual: false
895
+ Expected: true
896
+ Stack trace: (omitted)
897
+
898
+ DynamicFixture::TearDown
899
+ ~DynamicFixture()
900
+ [ FAILED ] DynamicFixture.DynamicTestFail
901
+ DynamicFixture::TearDownTestSuite
902
+ [----------] 1 test from DynamicFixtureAnotherName
903
+ DynamicFixture::SetUpTestSuite
904
+ [ RUN ] DynamicFixtureAnotherName.DynamicTestPass
905
+ DynamicFixture()
906
+ DynamicFixture::SetUp
907
+ DynamicFixture::TearDown
908
+ ~DynamicFixture()
909
+ [ OK ] DynamicFixtureAnotherName.DynamicTestPass
910
+ DynamicFixture::TearDownTestSuite
911
+ [----------] 2 tests from BadDynamicFixture1
912
+ DynamicFixture::SetUpTestSuite
913
+ [ RUN ] BadDynamicFixture1.FixtureBase
914
+ DynamicFixture()
915
+ DynamicFixture::SetUp
916
+ DynamicFixture::TearDown
917
+ ~DynamicFixture()
918
+ [ OK ] BadDynamicFixture1.FixtureBase
919
+ [ RUN ] BadDynamicFixture1.TestBase
920
+ DynamicFixture()
921
+ gtest.cc:#: Failure
922
+ Failed
923
+ All tests in the same test suite must use the same test fixture
924
+ class, so mixing TEST_F and TEST in the same test suite is
925
+ illegal. In test suite BadDynamicFixture1,
926
+ test FixtureBase is defined using TEST_F but
927
+ test TestBase is defined using TEST. You probably
928
+ want to change the TEST to TEST_F or move it to another test
929
+ case.
930
+ Stack trace: (omitted)
931
+
932
+ ~DynamicFixture()
933
+ [ FAILED ] BadDynamicFixture1.TestBase
934
+ DynamicFixture::TearDownTestSuite
935
+ [----------] 2 tests from BadDynamicFixture2
936
+ DynamicFixture::SetUpTestSuite
937
+ [ RUN ] BadDynamicFixture2.FixtureBase
938
+ DynamicFixture()
939
+ DynamicFixture::SetUp
940
+ DynamicFixture::TearDown
941
+ ~DynamicFixture()
942
+ [ OK ] BadDynamicFixture2.FixtureBase
943
+ [ RUN ] BadDynamicFixture2.Derived
944
+ DynamicFixture()
945
+ gtest.cc:#: Failure
946
+ Failed
947
+ All tests in the same test suite must use the same test fixture
948
+ class. However, in test suite BadDynamicFixture2,
949
+ you defined test FixtureBase and test Derived
950
+ using two different test fixture classes. This can happen if
951
+ the two classes are from different namespaces or translation
952
+ units and have the same name. You should probably rename one
953
+ of the classes to put the tests into different test suites.
954
+ Stack trace: (omitted)
955
+
956
+ ~DynamicFixture()
957
+ [ FAILED ] BadDynamicFixture2.Derived
958
+ DynamicFixture::TearDownTestSuite
959
+ [----------] 1 test from PrintingFailingParams/FailingParamTest
960
+ [ RUN ] PrintingFailingParams/FailingParamTest.Fails/0
961
+ googletest-output-test_.cc:#: Failure
962
+ Expected equality of these values:
963
+ 1
964
+ GetParam()
965
+ Which is: 2
966
+ Stack trace: (omitted)
967
+
968
+ [ FAILED ] PrintingFailingParams/FailingParamTest.Fails/0, where GetParam() = 2
969
+ [----------] 2 tests from PrintingStrings/ParamTest
970
+ [ RUN ] PrintingStrings/ParamTest.Success/a
971
+ [ OK ] PrintingStrings/ParamTest.Success/a
972
+ [ RUN ] PrintingStrings/ParamTest.Failure/a
973
+ googletest-output-test_.cc:#: Failure
974
+ Expected equality of these values:
975
+ "b"
976
+ GetParam()
977
+ Which is: "a"
978
+ Expected failure
979
+ Stack trace: (omitted)
980
+
981
+ [ FAILED ] PrintingStrings/ParamTest.Failure/a, where GetParam() = "a"
982
+ [----------] Global test environment tear-down
983
+ BarEnvironment::TearDown() called.
984
+ googletest-output-test_.cc:#: Failure
985
+ Failed
986
+ Expected non-fatal failure.
987
+ Stack trace: (omitted)
988
+
989
+ FooEnvironment::TearDown() called.
990
+ googletest-output-test_.cc:#: Failure
991
+ Failed
992
+ Expected fatal failure.
993
+ Stack trace: (omitted)
994
+
995
+ [==========] 84 tests from 39 test suites ran.
996
+ [ PASSED ] 30 tests.
997
+ [ FAILED ] 54 tests, listed below:
998
+ [ FAILED ] NonfatalFailureTest.EscapesStringOperands
999
+ [ FAILED ] NonfatalFailureTest.DiffForLongStrings
1000
+ [ FAILED ] FatalFailureTest.FatalFailureInSubroutine
1001
+ [ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine
1002
+ [ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine
1003
+ [ FAILED ] LoggingTest.InterleavingLoggingAndAssertions
1004
+ [ FAILED ] SCOPED_TRACETest.AcceptedValues
1005
+ [ FAILED ] SCOPED_TRACETest.ObeysScopes
1006
+ [ FAILED ] SCOPED_TRACETest.WorksInLoop
1007
+ [ FAILED ] SCOPED_TRACETest.WorksInSubroutine
1008
+ [ FAILED ] SCOPED_TRACETest.CanBeNested
1009
+ [ FAILED ] SCOPED_TRACETest.CanBeRepeated
1010
+ [ FAILED ] SCOPED_TRACETest.WorksConcurrently
1011
+ [ FAILED ] ScopedTraceTest.WithExplicitFileAndLine
1012
+ [ FAILED ] NonFatalFailureInFixtureConstructorTest.FailureInConstructor
1013
+ [ FAILED ] FatalFailureInFixtureConstructorTest.FailureInConstructor
1014
+ [ FAILED ] NonFatalFailureInSetUpTest.FailureInSetUp
1015
+ [ FAILED ] FatalFailureInSetUpTest.FailureInSetUp
1016
+ [ FAILED ] AddFailureAtTest.MessageContainsSpecifiedFileAndLineNumber
1017
+ [ FAILED ] GtestFailAtTest.MessageContainsSpecifiedFileAndLineNumber
1018
+ [ FAILED ] MixedUpTestSuiteTest.ThisShouldFail
1019
+ [ FAILED ] MixedUpTestSuiteTest.ThisShouldFailToo
1020
+ [ FAILED ] MixedUpTestSuiteWithSameTestNameTest.TheSecondTestWithThisNameShouldFail
1021
+ [ FAILED ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTESTAndShouldFail
1022
+ [ FAILED ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST_FAndShouldFail
1023
+ [ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereIsNoNonfatalFailure
1024
+ [ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereAreTwoNonfatalFailures
1025
+ [ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereIsOneFatalFailure
1026
+ [ FAILED ] ExpectNonfatalFailureTest.FailsWhenStatementReturns
1027
+ [ FAILED ] ExpectNonfatalFailureTest.FailsWhenStatementThrows
1028
+ [ FAILED ] ExpectFatalFailureTest.FailsWhenThereIsNoFatalFailure
1029
+ [ FAILED ] ExpectFatalFailureTest.FailsWhenThereAreTwoFatalFailures
1030
+ [ FAILED ] ExpectFatalFailureTest.FailsWhenThereIsOneNonfatalFailure
1031
+ [ FAILED ] ExpectFatalFailureTest.FailsWhenStatementReturns
1032
+ [ FAILED ] ExpectFatalFailureTest.FailsWhenStatementThrows
1033
+ [ FAILED ] TypedTest/0.Failure, where TypeParam = int
1034
+ [ FAILED ] TypedTestWithNames/char0.Failure, where TypeParam = char
1035
+ [ FAILED ] TypedTestWithNames/int1.Failure, where TypeParam = int
1036
+ [ FAILED ] Unsigned/TypedTestP/0.Failure, where TypeParam = unsigned char
1037
+ [ FAILED ] Unsigned/TypedTestP/1.Failure, where TypeParam = unsigned int
1038
+ [ FAILED ] UnsignedCustomName/TypedTestP/unsignedChar0.Failure, where TypeParam = unsigned char
1039
+ [ FAILED ] UnsignedCustomName/TypedTestP/unsignedInt1.Failure, where TypeParam = unsigned int
1040
+ [ FAILED ] ExpectFailureTest.ExpectFatalFailure
1041
+ [ FAILED ] ExpectFailureTest.ExpectNonFatalFailure
1042
+ [ FAILED ] ExpectFailureTest.ExpectFatalFailureOnAllThreads
1043
+ [ FAILED ] ExpectFailureTest.ExpectNonFatalFailureOnAllThreads
1044
+ [ FAILED ] ExpectFailureWithThreadsTest.ExpectFatalFailure
1045
+ [ FAILED ] ExpectFailureWithThreadsTest.ExpectNonFatalFailure
1046
+ [ FAILED ] ScopedFakeTestPartResultReporterTest.InterceptOnlyCurrentThread
1047
+ [ FAILED ] DynamicFixture.DynamicTestFail
1048
+ [ FAILED ] BadDynamicFixture1.TestBase
1049
+ [ FAILED ] BadDynamicFixture2.Derived
1050
+ [ FAILED ] PrintingFailingParams/FailingParamTest.Fails/0, where GetParam() = 2
1051
+ [ FAILED ] PrintingStrings/ParamTest.Failure/a, where GetParam() = "a"
1052
+
1053
+ 54 FAILED TESTS
1054
+  YOU HAVE 1 DISABLED TEST
1055
+
1056
+ Note: Google Test filter = FatalFailureTest.*:LoggingTest.*
1057
+ [==========] Running 4 tests from 2 test suites.
1058
+ [----------] Global test environment set-up.
1059
+ [----------] 3 tests from FatalFailureTest
1060
+ [ RUN ] FatalFailureTest.FatalFailureInSubroutine
1061
+ (expecting a failure that x should be 1)
1062
+ googletest-output-test_.cc:#: Failure
1063
+ Expected equality of these values:
1064
+ 1
1065
+ x
1066
+ Which is: 2
1067
+ Stack trace: (omitted)
1068
+
1069
+ [ FAILED ] FatalFailureTest.FatalFailureInSubroutine (? ms)
1070
+ [ RUN ] FatalFailureTest.FatalFailureInNestedSubroutine
1071
+ (expecting a failure that x should be 1)
1072
+ googletest-output-test_.cc:#: Failure
1073
+ Expected equality of these values:
1074
+ 1
1075
+ x
1076
+ Which is: 2
1077
+ Stack trace: (omitted)
1078
+
1079
+ [ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine (? ms)
1080
+ [ RUN ] FatalFailureTest.NonfatalFailureInSubroutine
1081
+ (expecting a failure on false)
1082
+ googletest-output-test_.cc:#: Failure
1083
+ Value of: false
1084
+ Actual: false
1085
+ Expected: true
1086
+ Stack trace: (omitted)
1087
+
1088
+ [ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine (? ms)
1089
+ [----------] 3 tests from FatalFailureTest (? ms total)
1090
+
1091
+ [----------] 1 test from LoggingTest
1092
+ [ RUN ] LoggingTest.InterleavingLoggingAndAssertions
1093
+ (expecting 2 failures on (3) >= (a[i]))
1094
+ i == 0
1095
+ i == 1
1096
+ googletest-output-test_.cc:#: Failure
1097
+ Expected: (3) >= (a[i]), actual: 3 vs 9
1098
+ Stack trace: (omitted)
1099
+
1100
+ i == 2
1101
+ i == 3
1102
+ googletest-output-test_.cc:#: Failure
1103
+ Expected: (3) >= (a[i]), actual: 3 vs 6
1104
+ Stack trace: (omitted)
1105
+
1106
+ [ FAILED ] LoggingTest.InterleavingLoggingAndAssertions (? ms)
1107
+ [----------] 1 test from LoggingTest (? ms total)
1108
+
1109
+ [----------] Global test environment tear-down
1110
+ [==========] 4 tests from 2 test suites ran. (? ms total)
1111
+ [ PASSED ] 0 tests.
1112
+ [ FAILED ] 4 tests, listed below:
1113
+ [ FAILED ] FatalFailureTest.FatalFailureInSubroutine
1114
+ [ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine
1115
+ [ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine
1116
+ [ FAILED ] LoggingTest.InterleavingLoggingAndAssertions
1117
+
1118
+ 4 FAILED TESTS
1119
+ Note: Google Test filter = *DISABLED_*
1120
+ [==========] Running 1 test from 1 test suite.
1121
+ [----------] Global test environment set-up.
1122
+ [----------] 1 test from DisabledTestsWarningTest
1123
+ [ RUN ] DisabledTestsWarningTest.DISABLED_AlsoRunDisabledTestsFlagSuppressesWarning
1124
+ [ OK ] DisabledTestsWarningTest.DISABLED_AlsoRunDisabledTestsFlagSuppressesWarning
1125
+ [----------] Global test environment tear-down
1126
+ [==========] 1 test from 1 test suite ran.
1127
+ [ PASSED ] 1 test.
1128
+ Note: Google Test filter = PassingTest.*
1129
+ Note: This is test shard 2 of 2.
1130
+ [==========] Running 1 test from 1 test suite.
1131
+ [----------] Global test environment set-up.
1132
+ [----------] 1 test from PassingTest
1133
+ [ RUN ] PassingTest.PassingTest2
1134
+ [ OK ] PassingTest.PassingTest2
1135
+ [----------] Global test environment tear-down
1136
+ [==========] 1 test from 1 test suite ran.
1137
+ [ PASSED ] 1 test.