Sign in
third-party-mirror
/
GRTEv5
/
refs/heads/master
/
.
/
google3
/
third_party
/
grte
/
v5_src
/
glibc-2.27
/
elf
/
tst-tls12.c
blob: ccd5f8b43e444d7bf2ee478a167c4e077346f443 [
file
] [
log
] [
blame
] [
edit
]
#include
"tst-tls10.h"
#define
CHECK
(
N
,
S
)
\
p
=
&
a
##N; \
if
(
p
->
a
!=
S
||
p
->
b
!=
S
+
1
||
p
->
c
!=
S
+
2
)
\
abort
()
static
int
do_test
(
void
)
{
struct
A
*
p
;
check1
();
CHECK
(
1
,
4
);
CHECK
(
2
,
7
);
exit
(
0
);
}
#include
<
support
/
test
-
driver
.
c
>