[WinForms] Fix #18506 ActiveTracker, do not propagate message to control when it...
[mono-project.git] / mono / unit-tests / test-mono-handle.c
blob6bd0d1d67238a5c8a5922defc73a44b7a289f322
1 /*
2 * test-mono-handle: tests for MonoHandle and MonoHandleArena
4 * Authors:
5 * Aleksey Kliger <aleksey@xamarin.com>
7 * Copyright 2015 Xamarin, Inc. (www.xamarin.com)
8 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
9 */
11 #include <config.h>
12 #include <glib.h>
13 #include <mono/metadata/handle.h>
15 static void
16 test2_arena_push_pop (void)
18 HandleStack *h = mono_handle_stack_alloc ();
19 mono_handle_stack_free (h);
22 #ifdef __cplusplus
23 extern "C"
24 #endif
25 int
26 test_mono_handle_main (void);
28 int
29 test_mono_handle_main (void)
31 test2_arena_push_pop ();
33 return 0;