pf_test.cpp 799 B

12345678910111213141516171819202122232425262728
  1. /*********************************************************************
  2. * _ _ _
  3. * _ __ | |_ _ | | __ _ | |__ ___
  4. * | '__|| __|(_)| | / _` || '_ \ / __|
  5. * | | | |_ _ | || (_| || |_) |\__ \
  6. * |_| \__|(_)|_| \__,_||_.__/ |___/
  7. *
  8. * www.rt-labs.com
  9. * Copyright 2018 rt-labs AB, Sweden.
  10. *
  11. * This software is dual-licensed under GPLv3 and a commercial
  12. * license. See the file LICENSE.md distributed with this software for
  13. * full license information.
  14. ********************************************************************/
  15. #include <gtest/gtest.h>
  16. #include "osal.h"
  17. OS_MAIN (int argc, char * argv[])
  18. {
  19. if (argc > 0)
  20. ::testing::InitGoogleTest (&argc, argv);
  21. else
  22. ::testing::InitGoogleTest();
  23. int result = RUN_ALL_TESTS();
  24. return result;
  25. }