?login_element?

Subversion Repositories NedoOS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. // https://github.com/vinniefalco/LuaBridge
  2. // Copyright 2018, Dmitry Tarakanov
  3. // SPDX-License-Identifier: MIT
  4.  
  5. #include <gtest/gtest.h>
  6.  
  7. int main(int argc, char** argv)
  8. {
  9.     // Disable performance tests by default
  10.     if (argc == 1)
  11.     {
  12.         testing::GTEST_FLAG(filter) = "-PerformanceTests.AllTests";
  13.     }
  14.  
  15.     testing::InitGoogleTest(&argc, argv);
  16.     return RUN_ALL_TESTS();
  17. }
  18.