diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2007-04-07 15:10:06 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2007-04-07 15:10:06 +0000 |
commit | dd56fe7c2375c250997a416ea3b598e7c934d9ef (patch) | |
tree | bbf79eab769708e49291ec44992e9fd49d2d2fdf | |
parent | 1df918ac8ec140974275e1d976d6d828789bfaa0 (diff) | |
download | gcc-dd56fe7c2375c250997a416ea3b598e7c934d9ef.zip gcc-dd56fe7c2375c250997a416ea3b598e7c934d9ef.tar.gz gcc-dd56fe7c2375c250997a416ea3b598e7c934d9ef.tar.bz2 |
re PR testsuite/31369 (100's of new libgomp fails)
PR testsuite/31369
* testsuite/libgomp.c++/c++.exp: Don't use concat when setting
ld_library_path.
* testsuite/libgomp.fortran/fortran.exp: Likewise.
From-SVN: r123638
-rw-r--r-- | libgomp/ChangeLog | 7 | ||||
-rw-r--r-- | libgomp/testsuite/libgomp.c++/c++.exp | 2 | ||||
-rw-r--r-- | libgomp/testsuite/libgomp.fortran/fortran.exp | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 960c57c..ea94cea 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,10 @@ +2007-04-07 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + + PR testsuite/31369 + * testsuite/libgomp.c++/c++.exp: Don't use concat when setting + ld_library_path. + * testsuite/libgomp.fortran/fortran.exp: Likewise. + 2007-04-04 Jakub Jelinek <jakub@redhat.com> * libgomp.h (gomp_cpu_affinity, gomp_cpu_affinity_len): New extern diff --git a/libgomp/testsuite/libgomp.c++/c++.exp b/libgomp/testsuite/libgomp.c++/c++.exp index 213ce02..f11482c 100644 --- a/libgomp/testsuite/libgomp.c++/c++.exp +++ b/libgomp/testsuite/libgomp.c++/c++.exp @@ -28,7 +28,7 @@ if { $lang_test_file_found } { # Gather a list of all tests. set tests [lsort [glob -nocomplain $srcdir/$subdir/*.C]] - set ld_library_path [concat $always_ld_library_path ":${blddir}/${lang_library_path}"] + set ld_library_path "$always_ld_library_path:${blddir}/${lang_library_path}" set_ld_library_path_env_vars # Main loop. diff --git a/libgomp/testsuite/libgomp.fortran/fortran.exp b/libgomp/testsuite/libgomp.fortran/fortran.exp index a28133a..ec0f878 100644 --- a/libgomp/testsuite/libgomp.fortran/fortran.exp +++ b/libgomp/testsuite/libgomp.fortran/fortran.exp @@ -12,7 +12,7 @@ if [file exists "${blddir}/${lang_test_file}"] { # Gather a list of all tests. set tests [lsort [find $srcdir/$subdir *.\[fF\]{,90,95,03}]] - set ld_library_path [concat $always_ld_library_path ":${blddir}/${lang_library_path}"] + set ld_library_path "$always_ld_library_path:${blddir}/${lang_library_path}" set_ld_library_path_env_vars # Main loop. |