This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.19-45-g8756f74


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  8756f74004e73ce9276b9ab698f5043f6e7ffcd7 (commit)
      from  1b6dd3f1297882f2450942a55189fefaae31071f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=8756f74004e73ce9276b9ab698f5043f6e7ffcd7

commit 8756f74004e73ce9276b9ab698f5043f6e7ffcd7
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Wed Feb 12 20:52:19 2014 +0000

    Stop io/ftwtest deleting its own output.
    
    If you rerun "make check" in a tree where some tests have already been
    run, it will rerun io/ftwtest-sh because that test uses ftwtest.out,
    the same name to which output is redirected, as its internal temporary
    file, and then removes it on exit.
    
    Clearly tests should not be removing the files to which their output
    is redirected like that.  This patch changes the script to use a
    different file as its internal temporary file, so the actual output
    referenced in the makefile isn't removed.
    
    Tested x86_64.
    
    	* io/ftwtest-sh (testout): Change to $tmp/ftwtest-tmp.out.

diff --git a/ChangeLog b/ChangeLog
index e231408..006ca7d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2014-02-12  Joseph Myers  <joseph@codesourcery.com>
 
+	* io/ftwtest-sh (testout): Change to $tmp/ftwtest-tmp.out.
+
 	* Makerules (check-abi-%): Change target to
 	$(objpfx)check-abi-%.out.
 	(check-abi target): Update dependencies.
diff --git a/io/ftwtest-sh b/io/ftwtest-sh
index 7341c1f..db1c6bc 100644
--- a/io/ftwtest-sh
+++ b/io/ftwtest-sh
@@ -69,7 +69,7 @@ ln -s $tmpdir/foo/lvl1/lvl2/lvl3/lvl4 $tmpdir/foo/lvl1/link@1
 echo > $tmpdir/bar/xo
 chmod a-x,a+r $tmpdir/bar
 
-testout=$tmp/ftwtest.out
+testout=$tmp/ftwtest-tmp.out
 
 $testprogram $tmpdir |
     sort > $testout

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog     |    2 ++
 io/ftwtest-sh |    2 +-
 2 files changed, 3 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]