main.c 432 B

1234567891011121314151617181920
  1. /** BEGIN COPYRIGHT BLOCK
  2. * Copyright (C) 2017 Red Hat, Inc.
  3. * All rights reserved.
  4. *
  5. * License: GPL (version 3 or any later version).
  6. * See LICENSE for details.
  7. * END COPYRIGHT BLOCK **/
  8. #include "test_slapd.h"
  9. int
  10. main(int argc __attribute__((unused)), char **argv __attribute__((unused)))
  11. {
  12. int result = 0;
  13. result += run_libslapd_tests();
  14. result += run_plugin_tests();
  15. PR_Cleanup();
  16. return result;
  17. }