summaryrefslogtreecommitdiff
path: root/ccan/tal/test/run-free.c
blob: 29aa8c6f49dacf462300f41eda207b414c29ea95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <ccan/tal/tal.h>
#include <ccan/tal/tal.c>
#include <ccan/tap/tap.h>

static void destroy_errno(char *p)
{
	errno = ENOENT;
}

int main(void)
{
	char *p;

	plan_tests(2);

	p = tal(NULL, char);
	ok1(tal_add_destructor(p, destroy_errno));

	/* Errno save/restored across free. */
	errno = EINVAL;
	tal_free(p);
	ok1(errno == EINVAL);

	tal_cleanup();
	return exit_status();
}