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.16-ports-merge-518-g0708a7d


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  0708a7d1f08d12da03bbaac84e59370f75030d95 (commit)
      from  3a8db22f07e2ab5373d4a366672a7a7b158ada96 (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=0708a7d1f08d12da03bbaac84e59370f75030d95

commit 0708a7d1f08d12da03bbaac84e59370f75030d95
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Wed Oct 24 11:47:16 2012 +0000

    Use build directory instead of /tmp in globtest.sh.

diff --git a/ChangeLog b/ChangeLog
index f67a38f..905c413 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2012-10-24  Joseph Myers  <joseph@codesourcery.com>
+
+	* posix/globtest.sh (TMPDIR): Do not set.
+	(testdir): Define using ${common_objpfx}posix not $TMPDIR.
+	(testout): Likewise.
+
 2012-10-24  Andreas Jaeger  <aj@suse.de>
 
 	* io/fcntl.h: Always define mode_t, off_t, pid_t and use these
diff --git a/posix/globtest.sh b/posix/globtest.sh
index 29277a4..ea947b8 100755
--- a/posix/globtest.sh
+++ b/posix/globtest.sh
@@ -42,9 +42,10 @@ LANG=C
 export LANG
 
 # Create the arena
-: ${TMPDIR=/tmp}
-testdir=$(mktemp -d $TMPDIR/globtest-dir.XXXXXX)
-testout=$(mktemp $TMPDIR/globtest-out.XXXXXX)
+testdir=${common_objpfx}posix/globtest-dir
+testout=${common_objpfx}posix/globtest-out
+rm -rf $testdir $testout
+mkdir $testdir
 
 trap 'chmod 777 $testdir/noread; rm -fr $testdir $testout' 1 2 3 15
 

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

Summary of changes:
 ChangeLog         |    6 ++++++
 posix/globtest.sh |    7 ++++---
 2 files changed, 10 insertions(+), 3 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]