Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

29 строки
695 B

  1. //
  2. // Lol Engine — Unit tests
  3. //
  4. // Copyright © 2010—2015 Sam Hocevar <sam@hocevar.net>
  5. //
  6. // Lol Engine is free software. It comes without any warranty, to
  7. // the extent permitted by applicable law. You can redistribute it
  8. // and/or modify it under the terms of the Do What the Fuck You Want
  9. // to Public License, Version 2, as published by the WTFPL Task Force.
  10. // See http://www.wtfpl.net/ for more details.
  11. //
  12. #include <lol/engine-internal.h>
  13. #include <cstdio>
  14. #include <cstdlib>
  15. #include <lolunit.h>
  16. int main(int argc, char **argv)
  17. {
  18. UNUSED(argc, argv);
  19. lol::text_runner runner;
  20. bool success = runner.Run();
  21. return success ? EXIT_SUCCESS : EXIT_FAILURE;
  22. }