library_independ.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. libmc - check if library is independent to $(topsrc)/src directory
  3. Copyright (C) 2011-2024
  4. Free Software Foundation, Inc.
  5. Written by:
  6. Slava Zanko <slavazanko@gmail.com>, 2011, 2013
  7. This file is part of the Midnight Commander.
  8. The Midnight Commander is free software: you can redistribute it
  9. and/or modify it under the terms of the GNU General Public License as
  10. published by the Free Software Foundation, either version 3 of the License,
  11. or (at your option) any later version.
  12. The Midnight Commander is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU General Public License for more details.
  16. You should have received a copy of the GNU General Public License
  17. along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #define TEST_SUITE_NAME "lib/library_independ"
  20. #include "tests/mctest.h"
  21. /* --------------------------------------------------------------------------------------------- */
  22. /* *INDENT-OFF* */
  23. START_TEST (test_library_independ)
  24. /* *INDENT-ON* */
  25. {
  26. }
  27. /* *INDENT-OFF* */
  28. END_TEST
  29. /* *INDENT-ON* */
  30. /* --------------------------------------------------------------------------------------------- */
  31. int
  32. main (void)
  33. {
  34. TCase *tc_core;
  35. tc_core = tcase_create ("Core");
  36. /* Add new tests here: *************** */
  37. tcase_add_test (tc_core, test_library_independ);
  38. /* *********************************** */
  39. return mctest_run_all (tc_core);
  40. }
  41. /* --------------------------------------------------------------------------------------------- */