1
0
mirror of https://github.com/haiwen/libsearpc.git synced 2025-05-06 22:26:20 +00:00
libsearpc/tests/main.c

38 lines
876 B
C
Raw Permalink Normal View History

/*
* Copyright (c) Vicent Marti. All rights reserved.
*
* This file is part of clar, distributed under the ISC license.
* For full terms see the included COPYING file.
*/
2016-06-14 02:07:42 +00:00
#include <glib.h>
2016-06-28 07:40:12 +00:00
#include <glib-object.h>
2016-06-14 02:07:42 +00:00
#include "clar_test.h"
/*
* Minimal main() for clar tests.
*
* Modify this with any application specific setup or teardown that you need.
* The only required line is the call to `clar_test(argc, argv)`, which will
* execute the test suite. If you want to check the return value of the test
* application, main() should return the same value returned by clar_test().
*/
#ifdef _WIN32
int __cdecl main(int argc, char *argv[])
#else
int main(int argc, char *argv[])
#endif
{
2016-06-14 02:07:42 +00:00
#if !GLIB_CHECK_VERSION(2, 36, 0)
g_type_init ();
#endif
#ifndef WIN32
signal (SIGPIPE, SIG_IGN);
#endif
/* Run the test suite */
return clar_test(argc, argv);
}