Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
darshan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
71
Issues
71
List
Boards
Labels
Milestones
Merge Requests
4
Merge Requests
4
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
darshan
darshan
Commits
96df671a
Commit
96df671a
authored
Apr 07, 2015
by
Philip Carns
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
check mpi counters in mpi-io-test regression
parent
5a14a88b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
13 deletions
+10
-13
darshan-test/regression/test-cases/mpi-io-test.sh
darshan-test/regression/test-cases/mpi-io-test.sh
+10
-13
No files found.
darshan-test/regression/test-cases/mpi-io-test.sh
View file @
96df671a
...
...
@@ -26,25 +26,22 @@ if [ $? -ne 0 ]; then
echo
"Error: failed to parse
${
DARSHAN_LOGFILE
}
"
1>&2
exit
1
fi
$DARSHAN_PATH
/bin/darshan-mpiio-parser
$DARSHAN_LOGFILE
>
$DARSHAN_TMP
/
${
PROG
}
-mpiio
.darshan.txt
if
[
$?
-ne
0
]
;
then
echo
"Error: failed to parse
${
DARSHAN_LOGFILE
}
"
1>&2
exit
1
fi
# check results
# in this case we want to confirm that both the MPI and POSIX open counters were triggered
#MPI_OPENS=`grep CP_INDEP_OPENS $DARSHAN_TMP/${PROG}.darshan.txt |cut -f 4`
#if [ ! $MPI_OPENS -gt 0 ]; then
# echo "Error: MPI open count of $MPI_OPENS is incorrect" 1>&2
# exit 1
#fi
#POSIX_OPENS=`grep CP_POSIX_OPENS $DARSHAN_TMP/${PROG}.darshan.txt |cut -f 4`
#if [ ! $POSIX_OPENS -gt 0 ]; then
# echo "Error: POSIX open count of $POSIX_OPENS is incorrect" 1>&2
# exit 1
#fi
POSIX_OPENS
=
`
grep
POSIX_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |cut
-d
:
-f
2 |xargs
`
if
[
!
$POSIX_OPENS
-gt
0
]
;
then
echo
"Error: POSIX open count of
$POSIX_OPENS
is incorrect"
1>&2
exit
1
fi
MPI_OPENS
=
`
grep
INDEP_OPENS
$DARSHAN_TMP
/
${
PROG
}
-mpiio
.darshan.txt |cut
-d
:
-f
2 |xargs
`
if
[
!
$MPI_OPENS
-gt
0
]
;
then
echo
"Error: MPI open count of
$MPI_OPENS
is incorrect"
1>&2
exit
1
fi
exit
0
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment