-
-
Notifications
You must be signed in to change notification settings - Fork 290
Add script to test examples with h5*cc pkg-config wrappers #5486
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
byrnHDF
wants to merge
18
commits into
HDFGroup:develop
Choose a base branch
from
byrnHDF:develop-sh-exam
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
362a943
Update examples and add scripts
byrnHDF 371cda2
pkg-config doesn't understand Fflags
byrnHDF 1c462fd
Add test scripts for h5*cc testing
byrnHDF ecf0753
Add note about test-pc.sh script
byrnHDF dafdea7
Fix comment symbol
byrnHDF 5b2ff22
Merge branch 'HDFGroup:develop' into develop-sh-exam
byrnHDF 4805f1c
Merge branch 'HDFGroup:develop' into develop-sh-exam
byrnHDF 115e354
Merge branch 'HDFGroup:develop' into develop-sh-exam
byrnHDF d55a312
Merge branch 'HDFGroup:develop' into develop-sh-exam
byrnHDF 90f1e1f
Merge branch 'HDFGroup:develop' into develop-sh-exam
byrnHDF 68b4389
Merge branch 'HDFGroup:develop' into develop-sh-exam
byrnHDF dfc277b
Merge branch 'HDFGroup:develop' into develop-sh-exam
byrnHDF 65b39ff
Merge branch 'HDFGroup:develop' into develop-sh-exam
byrnHDF a2130f8
Merge branch 'HDFGroup:develop' into develop-sh-exam
byrnHDF 785a8e9
Merge branch 'HDFGroup:develop' into develop-sh-exam
byrnHDF 23a7026
Merge branch 'HDFGroup:develop' into develop-sh-exam
byrnHDF f5c95d2
Merge branch 'HDFGroup:develop' into develop-sh-exam
byrnHDF 4bbed93
Merge branch 'HDFGroup:develop' into develop-sh-exam
byrnHDF File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#! /bin/sh | ||
# | ||
# Copyright by The HDF Group. | ||
# All rights reserved. | ||
# | ||
# This file is part of HDF5. The full HDF5 copyright notice, including | ||
# terms governing use, modification, and redistribution, is contained in | ||
# the LICENSE file, which can be found at the root of the source code | ||
# distribution tree, or in https://www.hdfgroup.org/licenses. | ||
# If you do not have access to either file, you may request a copy from | ||
# [email protected]. | ||
|
||
# This file is for use of h5cc created with the CMake process | ||
# HDF5_HOME is expected to be set | ||
|
||
srcdir=.. | ||
builddir=. | ||
verbose=yes | ||
nerrors=0 | ||
|
||
# Loop through all subdirectories | ||
for dir in */; do | ||
if [ -d "$dir" ]; then | ||
#check if sysconfig.out exists | ||
if [ -f "$dir/test-pc.sh" ]; | ||
then | ||
echo "Entering directory: $dir" | ||
( | ||
cd "$dir" && mkdir "build" | ||
cd "build" && ../test-pc.sh # Execute script in the subdirectory | ||
) | ||
echo "Exiting directory: $dir" | ||
fi | ||
fi | ||
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#! /bin/sh | ||
# | ||
# Copyright by The HDF Group. | ||
# All rights reserved. | ||
# | ||
# This file is part of HDF5. The full HDF5 copyright notice, including | ||
# terms governing use, modification, and redistribution, is contained in | ||
# the LICENSE file, which can be found at the root of the source code | ||
# distribution tree, or in https://www.hdfgroup.org/licenses. | ||
# If you do not have access to either file, you may request a copy from | ||
# [email protected]. | ||
|
||
# This file is for use of h5cc created with the CMake process | ||
# HDF5_HOME is expected to be set | ||
|
||
srcdir=.. | ||
builddir=. | ||
verbose=yes | ||
nerrors=0 | ||
|
||
# Loop through all subdirectories | ||
for dir in */; do | ||
if [ -d "$dir" ]; then | ||
#check if sysconfig.out exists | ||
if [ -f "$dir/test-pc.sh" ]; | ||
then | ||
echo "Entering directory: $dir" | ||
( | ||
cd "$dir" && mkdir "build" | ||
cd "build" && ../test-pc.sh # Execute script in the subdirectory | ||
) | ||
echo "Exiting directory: $dir" | ||
fi | ||
fi | ||
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#! /bin/sh | ||
# | ||
# Copyright by The HDF Group. | ||
# All rights reserved. | ||
# | ||
# This file is part of HDF5. The full HDF5 copyright notice, including | ||
# terms governing use, modification, and redistribution, is contained in | ||
# the LICENSE file, which can be found at the root of the source code | ||
# distribution tree, or in https://www.hdfgroup.org/licenses. | ||
# If you do not have access to either file, you may request a copy from | ||
# [email protected]. | ||
|
||
# This file is for use of h5cc created with the CMake process | ||
# HDF5_HOME is expected to be set | ||
|
||
srcdir=.. | ||
builddir=. | ||
verbose=yes | ||
nerrors=0 | ||
|
||
# Loop through all subdirectories | ||
for dir in */; do | ||
if [ -d "$dir" ]; then | ||
#check if sysconfig.out exists | ||
if [ -f "$dir/test-pc.sh" ]; | ||
then | ||
echo "Entering directory: $dir" | ||
( | ||
cd "$dir" && mkdir "build" | ||
cd "build" && ../test-pc.sh # Execute script in the subdirectory | ||
) | ||
echo "Exiting directory: $dir" | ||
fi | ||
fi | ||
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#! /bin/sh | ||
# | ||
# Copyright by The HDF Group. | ||
# All rights reserved. | ||
# | ||
# This file is part of HDF5. The full HDF5 copyright notice, including | ||
# terms governing use, modification, and redistribution, is contained in | ||
# the LICENSE file, which can be found at the root of the source code | ||
# distribution tree, or in https://www.hdfgroup.org/licenses. | ||
# If you do not have access to either file, you may request a copy from | ||
# [email protected]. | ||
|
||
# This file is for use of h5cc created with the CMake process | ||
# HDF5_HOME is expected to be set | ||
|
||
srcdir=.. | ||
builddir=. | ||
verbose=yes | ||
nerrors=0 | ||
|
||
mkdir "build" | ||
# Loop through all subdirectories | ||
for dir in */; do | ||
if [ -d "$dir" ]; then | ||
#check if sysconfig.out exists | ||
if [ -f "$dir/test-pc.sh" ]; | ||
then | ||
echo "Entering directory: $dir" | ||
( | ||
cd "$dir" && ./test-pc.sh # Execute script in the subdirectory | ||
) | ||
echo "Exiting directory: $dir" | ||
fi | ||
fi | ||
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this
h5hlcc
? We want to test h5cc.