xref: /aosp_15_r20/external/zlib/contrib/tests/standalone_test_runner.cc (revision 86ee64e75fa5f8bce2c8c356138035642429cd05)
1 // Copyright 2023 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the Chromium source repository LICENSE file.
4 #include <gtest/gtest.h>
5 
main(int argc,char ** argv)6 int main(int argc, char** argv) {
7   ::testing::InitGoogleTest(&argc, argv);
8   return RUN_ALL_TESTS();
9 }
10