summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2005-10-18 15:55:32 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2005-10-18 15:55:32 (GMT)
commitf18867f1db6371da295f695f5d8712024b18c59e (patch)
treeb514c6c518a2c7f565be1f88980a8d14fdac57ab /tools
parenta1d3ff30ac8ee6b6ceda980c526aec5953fbfa55 (diff)
downloadhdf5-f18867f1db6371da295f695f5d8712024b18c59e.zip
hdf5-f18867f1db6371da295f695f5d8712024b18c59e.tar.gz
hdf5-f18867f1db6371da295f695f5d8712024b18c59e.tar.bz2
[svn-r11577] Purpose: Maintenance/small VMS bug fix
Description: VMS doesn't like file names with more than one "." Some h5repacktst output file names were of the form <name>.out.h5 causing h5repacktst to choke. Solution: Renamed output files to be of the form <name>out.h5 Platforms tested: heping, unnamed VMS machine Misc. update:
Diffstat (limited to 'tools')
-rw-r--r--tools/h5repack/h5repack.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/tools/h5repack/h5repack.h b/tools/h5repack/h5repack.h
index dab4ece..1554039 100644
--- a/tools/h5repack/h5repack.h
+++ b/tools/h5repack/h5repack.h
@@ -250,32 +250,32 @@ int parse_number(char *str);
*/
#define FNAME0 "test0.h5"
-#define FNAME0OUT "test0.out.h5"
+#define FNAME0OUT "test0out.h5"
#define FNAME1 "test1.h5"
-#define FNAME1OUT "test1.out.h5"
+#define FNAME1OUT "test1out.h5"
#define FNAME2 "test2.h5"
-#define FNAME2OUT "test2.out.h5"
+#define FNAME2OUT "test2out.h5"
#define FNAME3 "test3.h5"
-#define FNAME3OUT "test3.out.h5"
+#define FNAME3OUT "test3out.h5"
#define FNAME4 "test4.h5"
-#define FNAME4OUT "test4.out.h5"
+#define FNAME4OUT "test4out.h5"
#define FNAME5 "test5.h5"
-#define FNAME5OUT "test5.out.h5"
+#define FNAME5OUT "test5out.h5"
#define FNAME6 "test6.h5"
#define FNAME7 "test_szip.h5"
#define FNAME8 "test_deflate.h5"
#define FNAME9 "test_shuffle.h5"
#define FNAME10 "test_fletcher32.h5"
#define FNAME11 "test_all.h5"
-#define FNAME7OUT "test_szip.out.h5"
-#define FNAME8OUT "test_deflate.out.h5"
-#define FNAME9OUT "test_shuffle.out.h5"
-#define FNAME10OUT "test_fletcher32.out.h5"
-#define FNAME11OUT "test_all.out.h5"
+#define FNAME7OUT "test_szipout.h5"
+#define FNAME8OUT "test_deflateout.h5"
+#define FNAME9OUT "test_shuffleout.h5"
+#define FNAME10OUT "test_fletcher32out.h5"
+#define FNAME11OUT "test_allout.h5"
#define FNAME12 "test_nbit.h5"
-#define FNAME12OUT "test_nbit.out.h5"
+#define FNAME12OUT "test_nbitout.h5"
#define FNAME13 "test_scaleoffset.h5"
-#define FNAME13OUT "test_scaleoffset.out.h5"
+#define FNAME13OUT "test_scaleoffsetout.h5"
int make_testfiles(void);