Fix testing with read-only source directory.
authorJoseph Myers <joseph@codesourcery.com>
Fri, 15 Dec 2017 22:37:17 +0000 (22:37 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Fri, 15 Dec 2017 22:37:17 +0000 (22:37 +0000)
Three tests fail with a read-only source directory because they try to
write into the source directory.  None of these write into it in a way
that should actually be problematic for concurrent builds sharing the
same writable source directory, but avoiding any writing into the
source directory (from testing, or from building glibc if the source
timestamps are properly ordered) is still a good idea, as being able
to build with read-only sources helps make sure there isn't anything
that could cause problems for concurrent builds.

This patch changes the tests in question to use either /tmp or the
build directory to write their temporary files (or to test O_TMPFILE,
as applicable).

Tested for x86_64.

* io/Makefile (tst-open-tmpfile-ARGS): New variable.
* posix/tst-mmap-offset.c (fname): Use /tmp.
* stdlib/tst-setcontext3.sh (tempfile): Use ${objpfx}.

ChangeLog
io/Makefile
posix/tst-mmap-offset.c
stdlib/tst-setcontext3.sh

index e96b2b49e406defc73524f92e85077488d5a073f..852043e5211e72538dded54ad2bbc07990587cad 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2017-12-15  Joseph Myers  <joseph@codesourcery.com>
+
+       * io/Makefile (tst-open-tmpfile-ARGS): New variable.
+       * posix/tst-mmap-offset.c (fname): Use /tmp.
+       * stdlib/tst-setcontext3.sh (tempfile): Use ${objpfx}.
+
 2017-12-15  Steve Ellcey  <sellcey@cavium.com>
 
        * nscd/dbg_log.c (dbg_log): Increase msg buffer size.
index b3ee5ae647f5759860f31c461b2d6d821dd1cfb7..c72519541fff632f2be1db4ea6f2b745010749cd 100644 (file)
@@ -109,6 +109,8 @@ test-stat2-ARGS = Makefile . $(objpfx)test-stat2
 
 tst-statvfs-ARGS = $(objpfx)tst-statvfs tst-statvfs.c /tmp
 
+tst-open-tmpfile-ARGS = --test-dir=$(objpfx)
+
 ifeq ($(run-built-tests),yes)
 $(objpfx)ftwtest.out: ftwtest-sh $(objpfx)ftwtest
        $(SHELL) $< $(common-objpfx) '$(test-program-cmd)' > $@; \
index 5bb88aab1043662fb9c422d6736faf1f0a0cd808..5e940c8d95d36616e5eadb7b5b81392125a2d0e9 100644 (file)
@@ -29,7 +29,7 @@
 
 static int fd;
 static long int page_shift;
-static char fname[] = "tst-mmap-offset-XXXXXX";
+static char fname[] = "/tmp/tst-mmap-offset-XXXXXX";
 
 static void
 do_prepare (int argc, char **argv)
index 158d0dc0a81773c83b82c63b55df153968050be2..014e7cfc5bbb99bccff21cc04e6aa41a3e17ed13 100644 (file)
@@ -34,7 +34,7 @@ cleanup() {
 }
 trap cleanup 0
 
-tempfile=$(mktemp "tst-setcontext3.XXXXXXXXXX")
+tempfile=$(mktemp "${objpfx}tst-setcontext3.XXXXXXXXXX")
 
 # We want to run the test program and see if secontext called
 # exit() and wrote out the test file we specified.  If the