summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2011-02-11 20:15:07 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2011-02-11 20:15:07 (GMT)
commitfa2dd2389cb000138168cbf5fb346257013195fd (patch)
tree807faf31bb46ab486614c930f261b700a5bf57fd
parent7861e05fb8ef400e448d2f1592df3bf90d19fa18 (diff)
downloadhdf5-fa2dd2389cb000138168cbf5fb346257013195fd.zip
hdf5-fa2dd2389cb000138168cbf5fb346257013195fd.tar.gz
hdf5-fa2dd2389cb000138168cbf5fb346257013195fd.tar.bz2
[svn-r20088] Add note to "Known problems" section of "RELEASE.txt about script to run examples not working on solaris.
-rw-r--r--release_docs/RELEASE.txt9
1 files changed, 8 insertions, 1 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index e5a1b2c..00dae15 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -604,4 +604,11 @@ Known Problems
-O1 or below resolves the issue. Using a newer version of the compiler
(11.0) avoids the issue. MAM - 2010/06/01
-
+* On solaris systems, when running the examples with the scripts installed in
+ .../share/hdf5_examples, two of the c tests, h5_extlink and h5_elink_unix2win
+ may fail or generate HDF5 errors because the script commands in c/run-c-ex.sh
+ fail to create test directories red, blue, and u2w. Moving the '!' in lines
+ 67, 70, 73 of run-c-ex.sh will fix the problem. For example the script command
+ "if ! test -d red; then" will work on solaris if changed to
+ "if test ! -d red; then".
+