Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
D
darshan
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
57
Issues
57
List
Board
Labels
Milestones
Merge Requests
4
Merge Requests
4
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
darshan
darshan
Commits
e65be62d
Commit
e65be62d
authored
Jan 22, 2019
by
Shane Snyder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update regression tests to avoid comment lines
parent
55860948
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
20 deletions
+20
-20
cxxpi.sh
darshan-test/regression/test-cases/cxxpi.sh
+1
-1
fperf-f77.sh
darshan-test/regression/test-cases/fperf-f77.sh
+2
-2
fperf-f90.sh
darshan-test/regression/test-cases/fperf-f90.sh
+2
-2
fprintf-fscanf-test.sh
darshan-test/regression/test-cases/fprintf-fscanf-test.sh
+3
-3
mpi-io-test.sh
darshan-test/regression/test-cases/mpi-io-test.sh
+2
-2
stdio-test.sh
darshan-test/regression/test-cases/stdio-test.sh
+10
-10
No files found.
darshan-test/regression/test-cases/cxxpi.sh
View file @
e65be62d
...
...
@@ -29,7 +29,7 @@ fi
# check results
# in this case we want to confirm that the open counts are zero; cxxpi does not do any IO
POSIX_OPENS
=
`
grep
POSIX_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |cut
-f
5
`
POSIX_OPENS
=
`
grep
POSIX_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"^#"
|
cut
-f
5
`
if
[
"
$POSIX_OPENS
"
x
!=
""
x
]
;
then
echo
"Error: Found unexpected POSIX open count of
$POSIX_OPENS
"
1>&2
exit
1
...
...
darshan-test/regression/test-cases/fperf-f77.sh
View file @
e65be62d
...
...
@@ -29,12 +29,12 @@ fi
# check results
# in this case we want to confirm that both the MPI and POSIX open counters were triggered
POSIX_OPENS
=
`
grep
POSIX_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |cut
-f
5
`
POSIX_OPENS
=
`
grep
POSIX_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"^#"
|
cut
-f
5
`
if
[
!
"
$POSIX_OPENS
"
-gt
0
]
;
then
echo
"Error: POSIX open count of
$POSIX_OPENS
is incorrect"
1>&2
exit
1
fi
MPI_OPENS
=
`
grep
COLL_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |cut
-f
5
`
MPI_OPENS
=
`
grep
COLL_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"^#"
|
cut
-f
5
`
if
[
!
"
$MPI_OPENS
"
-gt
0
]
;
then
echo
"Error: MPI open count of
$MPI_OPENS
is incorrect"
1>&2
exit
1
...
...
darshan-test/regression/test-cases/fperf-f90.sh
View file @
e65be62d
...
...
@@ -29,12 +29,12 @@ fi
# check results
# in this case we want to confirm that both the MPI and POSIX open counters were triggered
POSIX_OPENS
=
`
grep
POSIX_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |cut
-f
5
`
POSIX_OPENS
=
`
grep
POSIX_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"^#"
|
cut
-f
5
`
if
[
!
"
$POSIX_OPENS
"
-gt
0
]
;
then
echo
"Error: POSIX open count of
$POSIX_OPENS
is incorrect"
1>&2
exit
1
fi
MPI_OPENS
=
`
grep
COLL_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |cut
-f
5
`
MPI_OPENS
=
`
grep
COLL_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"^#"
|
cut
-f
5
`
if
[
!
"
$MPI_OPENS
"
-gt
0
]
;
then
echo
"Error: MPI open count of
$MPI_OPENS
is incorrect"
1>&2
exit
1
...
...
darshan-test/regression/test-cases/fprintf-fscanf-test.sh
View file @
e65be62d
...
...
@@ -29,21 +29,21 @@ fi
# check results
STDIO_OPENS
=
`
grep
STDIO_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"STDIN|STDOUT|STDERR"
|
cut
-f
5
`
STDIO_OPENS
=
`
grep
STDIO_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"
^#"
|
grep
-vE
"
STDIN|STDOUT|STDERR"
|
cut
-f
5
`
if
[
!
"
$STDIO_OPENS
"
-eq
4
]
;
then
echo
"Error: STDIO open count of
$STDIO_OPENS
is incorrect"
1>&2
exit
1
fi
# this will check fprintf counting
STDIO_BYTES_WRITTEN
=
`
grep
STDIO_BYTES_WRITTEN
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"STDIN|STDOUT|STDERR"
|
cut
-f
5
`
STDIO_BYTES_WRITTEN
=
`
grep
STDIO_BYTES_WRITTEN
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"
^#"
|
grep
-vE
"
STDIN|STDOUT|STDERR"
|
cut
-f
5
`
if
[
!
"
$STDIO_BYTES_WRITTEN
"
-eq
15
]
;
then
echo
"Error: STDIO bytes written count of
$STDIO_BYTES_WRITTEN
is incorrect"
1>&2
exit
1
fi
# this will check fscanf counting
STDIO_BYTES_READ
=
`
grep
STDIO_BYTES_READ
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"STDIN|STDOUT|STDERR"
|
cut
-f
5
`
STDIO_BYTES_READ
=
`
grep
STDIO_BYTES_READ
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"
^#"
|
grep
-vE
"
STDIN|STDOUT|STDERR"
|
cut
-f
5
`
if
[
!
"
$STDIO_BYTES_READ
"
-eq
15
]
;
then
echo
"Error: STDIO bytes read count of
$STDIO_BYTES_READ
is incorrect"
1>&2
exit
1
...
...
darshan-test/regression/test-cases/mpi-io-test.sh
View file @
e65be62d
...
...
@@ -29,12 +29,12 @@ fi
# check results
# in this case we want to confirm that both the MPI and POSIX open counters were triggered
POSIX_OPENS
=
`
grep
POSIX_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |cut
-f
5
`
POSIX_OPENS
=
`
grep
POSIX_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"^#"
|
cut
-f
5
`
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
}
.darshan.txt |cut
-f
5
`
MPI_OPENS
=
`
grep
INDEP_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"^#"
|
cut
-f
5
`
if
[
!
"
$MPI_OPENS
"
-gt
0
]
;
then
echo
"Error: MPI open count of
$MPI_OPENS
is incorrect"
1>&2
exit
1
...
...
darshan-test/regression/test-cases/stdio-test.sh
View file @
e65be62d
...
...
@@ -31,22 +31,22 @@ fi
# check at least one counter from each general open/read/write/seek category
STDIO_OPENS
=
`
grep
STDIO_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"STDIN|STDOUT|STDERR"
|
cut
-f
5
`
STDIO_OPENS
=
`
grep
STDIO_OPENS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"
^#"
|
grep
-vE
"
STDIN|STDOUT|STDERR"
|
cut
-f
5
`
if
[
!
"
$STDIO_OPENS
"
-gt
0
]
;
then
echo
"Error: STDIO open count of
$STDIO_OPENS
is incorrect"
1>&2
exit
1
fi
STDIO_SEEKS
=
`
grep
STDIO_SEEKS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"STDIN|STDOUT|STDERR"
|
cut
-f
5
`
STDIO_SEEKS
=
`
grep
STDIO_SEEKS
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"
^#"
|
grep
-vE
"
STDIN|STDOUT|STDERR"
|
cut
-f
5
`
if
[
!
"
$STDIO_SEEKS
"
-gt
0
]
;
then
echo
"Error: STDIO open count of
$STDIO_SEEKS
is incorrect"
1>&2
exit
1
fi
STDIO_BYTES_WRITTEN
=
`
grep
STDIO_BYTES_WRITTEN
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"STDIN|STDOUT|STDERR"
|
cut
-f
5
`
STDIO_BYTES_WRITTEN
=
`
grep
STDIO_BYTES_WRITTEN
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"
^#"
|
grep
-vE
"
STDIN|STDOUT|STDERR"
|
cut
-f
5
`
if
[
!
"
$STDIO_BYTES_WRITTEN
"
-eq
6
]
;
then
echo
"Error: STDIO open count of
$STDIO_BYTES_WRITTEN
is incorrect"
1>&2
exit
1
fi
STDIO_BYTES_READ
=
`
grep
STDIO_BYTES_READ
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"STDIN|STDOUT|STDERR"
|
cut
-f
5
`
STDIO_BYTES_READ
=
`
grep
STDIO_BYTES_READ
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"
^#"
|
grep
-vE
"
STDIN|STDOUT|STDERR"
|
cut
-f
5
`
if
[
!
"
$STDIO_BYTES_READ
"
-eq
6
]
;
then
echo
"Error: STDIO open count of
$STDIO_BYTES_READ
is incorrect"
1>&2
exit
1
...
...
@@ -55,32 +55,32 @@ fi
# make sure that some of the floating point counters are valid
# use bc for floating point comparison
STDIO_F_OPEN_START_TIMESTAMP
=
`
grep
STDIO_F_OPEN_START_TIMESTAMP
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"STDIN|STDOUT|STDERR"
|
cut
-f
5
`
STDIO_F_OPEN_START_TIMESTAMP
=
`
grep
STDIO_F_OPEN_START_TIMESTAMP
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"
^#"
|
grep
-vE
"
STDIN|STDOUT|STDERR"
|
cut
-f
5
`
if
[
!
$(
echo
"
$STDIO_F_OPEN_START_TIMESTAMP
> 0"
| bc
-l
)
]
;
then
echo
"Error: counter is incorrect"
1>&2
exit
1
fi
STDIO_F_OPEN_END_TIMESTAMP
=
`
grep
STDIO_F_OPEN_END_TIMESTAMP
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"STDIN|STDOUT|STDERR"
|
cut
-f
5
`
STDIO_F_OPEN_END_TIMESTAMP
=
`
grep
STDIO_F_OPEN_END_TIMESTAMP
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"
^#"
|
grep
-vE
"
STDIN|STDOUT|STDERR"
|
cut
-f
5
`
if
[
!
$(
echo
"
$STDIO_F_OPEN_END_TIMESTAMP
> 0"
| bc
-l
)
]
;
then
echo
"Error: counter is incorrect"
1>&2
exit
1
fi
STDIO_F_META_TIME
=
`
grep
STDIO_F_META_TIME
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"STDIN|STDOUT|STDERR"
|
cut
-f
5
`
STDIO_F_META_TIME
=
`
grep
STDIO_F_META_TIME
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"
^#"
|
grep
-vE
"
STDIN|STDOUT|STDERR"
|
cut
-f
5
`
if
[
!
$(
echo
"
$STDIO_F_META_TIME
> 0"
| bc
-l
)
]
;
then
echo
"Error: counter is incorrect"
1>&2
exit
1
fi
STDIO_F_WRITE_TIME
=
`
grep
STDIO_F_WRITE_TIME
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"STDIN|STDOUT|STDERR"
|
cut
-f
5
`
STDIO_F_WRITE_TIME
=
`
grep
STDIO_F_WRITE_TIME
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"
^#"
|
grep
-vE
"
STDIN|STDOUT|STDERR"
|
cut
-f
5
`
if
[
!
$(
echo
"
$STDIO_F_WRITE_TIME
> 0"
| bc
-l
)
]
;
then
echo
"Error: counter is incorrect"
1>&2
exit
1
fi
STDIO_F_CLOSE_START_TIMESTAMP
=
`
grep
STDIO_F_CLOSE_START_TIMESTAMP
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"STDIN|STDOUT|STDERR"
|
cut
-f
5
`
STDIO_F_CLOSE_START_TIMESTAMP
=
`
grep
STDIO_F_CLOSE_START_TIMESTAMP
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"
^#"
|
grep
-vE
"
STDIN|STDOUT|STDERR"
|
cut
-f
5
`
if
[
!
$(
echo
"
$STDIO_F_CLOSE_START_TIMESTAMP
> 0"
| bc
-l
)
]
;
then
echo
"Error: counter is incorrect"
1>&2
exit
1
fi
STDIO_F_CLOSE_END_TIMESTAMP
=
`
grep
STDIO_F_CLOSE_END_TIMESTAMP
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"STDIN|STDOUT|STDERR"
|
cut
-f
5
`
STDIO_F_CLOSE_END_TIMESTAMP
=
`
grep
STDIO_F_CLOSE_END_TIMESTAMP
$DARSHAN_TMP
/
${
PROG
}
.darshan.txt |
grep
-vE
"
^#"
|
grep
-vE
"
STDIN|STDOUT|STDERR"
|
cut
-f
5
`
if
[
!
$(
echo
"
$STDIO_F_CLOSE_END_TIMESTAMP
> 0"
| bc
-l
)
]
;
then
echo
"Error: counter is incorrect"
1>&2
exit
1
...
...
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