libdispatch update
[platform/upstream/gcd.git] / dispatch-1.0 / testing / dispatch_test.c
1 /*
2  * Copyright (c) 2008-2011 Apple Inc. All rights reserved.
3  *
4  * @APPLE_APACHE_LICENSE_HEADER_START@
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * @APPLE_APACHE_LICENSE_HEADER_END@
19  */
20
21 #include "dispatch_test.h"
22 #include "bsdtests.h"
23
24 #ifdef __OBJC_GC__
25 #include <objc/objc-auto.h>
26 #endif
27
28 #include <stdlib.h>
29 #include <stdio.h>
30 #include <unistd.h>
31 #include <sys/event.h>
32 #include <assert.h>
33
34 #include <dispatch/dispatch.h>
35
36 void test_start(const char* desc);
37
38 void
39 dispatch_test_start(const char* desc)
40 {
41 #if defined(__OBJC_GC__) && MAC_OS_X_VERSION_MIN_REQUIRED < 1070
42         objc_startCollectorThread();
43 #endif
44         test_start(desc);
45 }
46
47 bool
48 dispatch_test_check_evfilt_read_for_fd(int fd)
49 {
50         int kq = kqueue();
51         assert(kq != -1);
52         struct kevent ke = {
53                 .ident = fd,
54                 .filter = EVFILT_READ,
55                 .flags = EV_ADD|EV_ENABLE,
56         };
57         struct timespec t = {
58                 .tv_sec = 1,
59         };
60         int r = kevent(kq, &ke, 1, &ke, 1, &t);
61         close(kq);
62         return r > 0;
63 }
64
65 void
66 _dispatch_test_current(const char* file, long line, const char* desc, dispatch_queue_t expected)
67 {
68         dispatch_queue_t actual = dispatch_get_current_queue();
69         _test_ptr(file, line, desc, actual, expected);
70 }