repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add TLS offset probing to mach-amd64 in the same way it's done on x86.
[mono-project.git]
/
eglib
/
test
/
fake.c
blob
c8d9af61165e486656084672c9358b33e40e28fb
1
/*
2
* Fake test allows debugging of the driver itself
3
*/
4
5
#include
"test.h"
6
7
RESULT
8
test_fake
()
9
{
10
return
OK
;
11
}
12
13
static
Test fake_tests
[] = {
14
{
"fake"
,
test_fake
},
15
{
NULL
,
NULL
}
16
};
17
18
DEFINE_TEST_GROUP_INIT
(
fake_tests_init
,
fake_tests
)
19