summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-03-29 21:31:21 -0400
committerSven Eden <yamakuzure@gmx.net>2017-07-25 09:46:51 +0200
commitb713a0e0f40e002c6da41650dae2baf0dddae4ee (patch)
tree73015f5465b0a06a41baa2e04ace3955b9d92c91 /src/test
parent99b26b4267937bb2f77f964b8e72038f6e90d6da (diff)
test-sizeof: do not link with libelogind-shared
This makes it much quicker to compile.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/test-sizeof.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/test/test-sizeof.c b/src/test/test-sizeof.c
index 8f99a1377..7c8eac824 100644
--- a/src/test/test-sizeof.c
+++ b/src/test/test-sizeof.c
@@ -17,7 +17,8 @@
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
-#include "log.h"
+#include <stdio.h>
+
#include "time-util.h"
/* Print information about various types. Useful when diagnosing
@@ -26,10 +27,10 @@
#pragma GCC diagnostic ignored "-Wtype-limits"
#define info(t) \
- log_info("%s → %zu bits%s", STRINGIFY(t), \
- sizeof(t)*CHAR_BIT, \
- strstr(STRINGIFY(t), "signed") ? "" : \
- ((t)-1 < (t)0 ? ", signed" : ", unsigned"));
+ printf("%s → %zu bits%s\n", STRINGIFY(t), \
+ sizeof(t)*CHAR_BIT, \
+ strstr(STRINGIFY(t), "signed") ? "" : \
+ ((t)-1 < (t)0 ? ", signed" : ", unsigned"));
int main(void) {
info(char);