aboutsummaryrefslogtreecommitdiffstats
path: root/vputenvf.c
diff options
context:
space:
mode:
Diffstat (limited to 'vputenvf.c')
-rw-r--r--vputenvf.c28
1 files changed, 6 insertions, 22 deletions
diff --git a/vputenvf.c b/vputenvf.c
index ee823f2..cb09a0d 100644
--- a/vputenvf.c
+++ b/vputenvf.c
@@ -1,7 +1,11 @@
/* See LICENSE file for copyright and license details. */
-#include "libsimple.h"
+#include "common.h"
#ifndef TEST
+#if defined(__clang__)
+# pragma clang diagnostic ignored "-Wformat-nonliteral"
+#endif
+
int
libsimple_vputenvf(const char *fmt, va_list ap)
@@ -36,27 +40,7 @@ libsimple_vputenvf(const char *fmt, va_list ap)
int
main(void)
{
- unsetenv("X");
- assert(!getenv("X"));
- unsetenv("Y");
- assert(!getenv("Y"));
-
- putenvf("X=xyz");
- assert(!strcmpnul(getenv("X"), "xyz"));
- putenvf("Y=xyz");
- assert(!strcmpnul(getenv("Y"), "xyz"));
-
- putenvf("X=x%sz", "abc");
- assert(!strcmpnul(getenv("X"), "xabcz"));
- putenvf("Y=x%sz", "abc");
- assert(!strcmpnul(getenv("Y"), "xabcz"));
-
- putenvf("X=%ix%sz%i", 10, "abc", -11);
- assert(!strcmpnul(getenv("X"), "10xabcz-11"));
- putenvf("Y=%ix%sz%i", 10, "abc", -11);
- assert(!strcmpnul(getenv("Y"), "10xabcz-11"));
-
- return 0;
+ return 0; /* Tested via libsimple_putenvf */
}
#endif