From c8e16c12661d18e6ae724a6d89b81c0df9da365a Mon Sep 17 00:00:00 2001 From: Ulf Hermann Date: Thu, 4 May 2017 17:27:47 +0200 Subject: [PATCH] Write to /dev/null rather than /dev/zero /dev/zero is meant for reading zeroes. /dev/null is for writing into nirvana. Signed-off-by: Ulf Hermann --- tests/ChangeLog | 4 ++++ tests/elfshphehdr.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/ChangeLog b/tests/ChangeLog index 3dd6f2a9f..a4404e424 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,7 @@ +2017-05-04 Ulf Hermann + + * elfshphehdr.c: For writing, use /dev/null rather than /dev/zero. + 2017-07-14 Mark Wielaard * run-strip-remove-keep.sh: New test. diff --git a/tests/elfshphehdr.c b/tests/elfshphehdr.c index 5a297e0db..8183937cb 100644 --- a/tests/elfshphehdr.c +++ b/tests/elfshphehdr.c @@ -152,7 +152,7 @@ main (int argc __attribute__ ((unused)), char **argv __attribute ((unused))) { elf_version (EV_CURRENT); - int fd = fd = open("/dev/zero", O_WRONLY); + int fd = open("/dev/null", O_WRONLY); check ("open", fd >= 0); Elf *elf; -- 2.47.2