summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2017-05-04 17:27:47 +0200
committerMark Wielaard <mark@klomp.org>2017-07-24 11:40:18 +0200
commitc8e16c12661d18e6ae724a6d89b81c0df9da365a (patch)
treec3df781d7c50e26e29506e4a55f49e6ce520a323
parent8abf0b5b580094af36b9dc4ed6748379caa32a0e (diff)
downloadelfutils-c8e16c12661d18e6ae724a6d89b81c0df9da365a.tar.gz
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 <ulf.hermann@qt.io>
-rw-r--r--tests/ChangeLog4
-rw-r--r--tests/elfshphehdr.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog
index 3dd6f2a9..a4404e42 100644
--- a/tests/ChangeLog
+++ b/tests/ChangeLog
@@ -1,3 +1,7 @@
+2017-05-04 Ulf Hermann <ulf.hermann@qt.io>
+
+ * elfshphehdr.c: For writing, use /dev/null rather than /dev/zero.
+
2017-07-14 Mark Wielaard <mark@klomp.org>
* run-strip-remove-keep.sh: New test.
diff --git a/tests/elfshphehdr.c b/tests/elfshphehdr.c
index 5a297e0d..8183937c 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;