summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-09-27 14:55:36 (GMT)
committerGitHub <noreply@github.com>2023-09-27 14:55:36 (GMT)
commitb892c43e4968339c72a8897cd3c48834f67d680c (patch)
tree9b14be9fa6fc640ec04657ec6ac1e9aa8974a25f
parent4233ae69c0d255fdfe09f90c650aada9589d9bf8 (diff)
downloadhdf5-b892c43e4968339c72a8897cd3c48834f67d680c.zip
hdf5-b892c43e4968339c72a8897cd3c48834f67d680c.tar.gz
hdf5-b892c43e4968339c72a8897cd3c48834f67d680c.tar.bz2
Correct path name of ddl file to be changed (#3607)
-rwxr-xr-xbin/h5vers4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/h5vers b/bin/h5vers
index 1133451..7a07f68 100755
--- a/bin/h5vers
+++ b/bin/h5vers
@@ -199,7 +199,7 @@ my $TESTH5_JAVA = $file;
$TESTH5_JAVA =~ s/[^\/]*$/..\/java\/test\/TestH5.java/;
die "unable to read file: $TESTH5_JAVA\n" unless -r $file;
my $REPACK_LAYOUT_PLUGIN_VERSION = $file;
-$REPACK_LAYOUT_PLUGIN_VERSION =~ s/[^\/]*$/..\/tools\/test\/h5repack\/testfiles\/h5repack_layout.h5-plugin_version_test.ddl/;
+$REPACK_LAYOUT_PLUGIN_VERSION =~ s/[^\/]*$/..\/tools\/test\/h5repack\/expected\/h5repack_layout.h5-plugin_version_test.ddl/;
die "unable to read file: $REPACK_LAYOUT_PLUGIN_VERSION\n" unless -r $file;
# Get the current version number.
@@ -398,7 +398,7 @@ if ($TESTH5_JAVA) {
write_file($TESTH5_JAVA, $data);
}
-# Update the tools/test/h5repack/testfiles/h5repack_layout.h5-plugin_version_test.ddl file
+# Update the tools/test/h5repack/expected/h5repack_layout.h5-plugin_version_test.ddl file
if ($REPACK_LAYOUT_PLUGIN_VERSION) {
my $data = read_file($REPACK_LAYOUT_PLUGIN_VERSION);
my $version_string = sprintf("%d %d %d", @newver[0,1,2]);