Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

26 rader
765 B

  1. /*
  2. * caca-test testsuite program for libcaca
  3. * Copyright (c) 2008 Sam Hocevar <samhocevar.net>
  4. * All Rights Reserved
  5. *
  6. * This program 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 Sam Hocevar. See
  10. * http://sam.zoy.org/wtfpl/COPYING for more details.
  11. */
  12. #include "config.h"
  13. #include <cppunit/TextTestRunner.h>
  14. #include <cppunit/extensions/TestFactoryRegistry.h>
  15. int main(int argc, char *argv[])
  16. {
  17. CppUnit::TextTestRunner runner;
  18. runner.addTest(CppUnit::TestFactoryRegistry::getRegistry().makeTest());
  19. return !runner.run();
  20. }