aboutsummaryrefslogtreecommitdiffstats
path: root/eputenvf.c
blob: aee4d47cc7e00499fd7a3b984ccb20bb15e3a7d2 (plain) (blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"
#ifndef TEST


extern inline void libsimple_eputenvf(const char *, ...);


#else
#include "test.h"

int
main(void)
{
	eputenvf("X=xyz");
	assert(!strcmpnul(getenv("X"), "xyz"));
	eputenvf("Y=xyz");
	assert(!strcmpnul(getenv("Y"), "xyz"));

	eputenvf("X=x%sz", "abc");
	assert(!strcmpnul(getenv("X"), "xabcz"));
	eputenvf("Y=x%sz", "abc");
	assert(!strcmpnul(getenv("Y"), "xabcz"));

	eputenvf("X=%ix%sz%i", 10, "abc", -11);
	assert(!strcmpnul(getenv("X"), "10xabcz-11"));
	eputenvf("Y=%ix%sz%i", 10, "abc", -11);
	assert(!strcmpnul(getenv("Y"), "10xabcz-11"));

	if (have_custom_malloc()) {
		libsimple_default_failure_exit = 102;
		alloc_fail_in = 1;
		assert_exit(eputenvf("X=xyz"));
		assert(exit_status == 102);
		assert_stderr("%s: putenvf: %s\n", argv0, strerror(ENOMEM));
		assert(!alloc_fail_in);
	}

	return 0;
}

#endif