1
0
mirror of https://github.com/google/benchmark.git synced 2025-04-29 22:40:33 +08:00

comment-only: gunit => gtest

This commit is contained in:
Jesse Rosenstock 2023-08-24 13:09:18 +02:00
parent 2a86b7900e
commit 4f08fe555b

View File

@ -49,7 +49,7 @@ cc_library(
],
)
# Tests that use gunit. These rely on `gunit_main`.
# Tests that use gtest. These rely on `gtest_main`.
[
cc_test(
name = test_src[:-len(".cc")],
@ -69,7 +69,7 @@ cc_library(
for test_src in glob(["*_gtest.cc"])
]
# Tests that do not gunit. These have their own `main` defined.
# Tests that do not gtest. These have their own `main` defined.
[
cc_test(
name = test_src[:-len(".cc")],