diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2025-03-10 08:07:17 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2025-03-10 08:07:17 -0700 |
commit | 72088cbe294598b957a43d923cf070ecf49afe52 (patch) | |
tree | 7fc47f07aaf7c9dc1478805fdeb90fa28936eb20 | |
parent | 48691f6650bbae30d702faa2fddb666763ee4995 (diff) | |
download | binutils-72088cbe294598b957a43d923cf070ecf49afe52.zip binutils-72088cbe294598b957a43d923cf070ecf49afe52.tar.gz binutils-72088cbe294598b957a43d923cf070ecf49afe52.tar.bz2 |
gprof: Append -l to tst-gmon-gprof-l.sh data files
Append -l to tst-gmon-gprof-l.sh data files to avoid conflicts with
tst-gmon-gprof.sh data files.
* testsuite/tst-gmon-gprof-l.sh (actual): Append -l.
(expected): Likewise.
(expected_dot): Likewise.
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
-rwxr-xr-x | gprof/testsuite/tst-gmon-gprof-l.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gprof/testsuite/tst-gmon-gprof-l.sh b/gprof/testsuite/tst-gmon-gprof-l.sh index 3e54da6..530d022 100755 --- a/gprof/testsuite/tst-gmon-gprof-l.sh +++ b/gprof/testsuite/tst-gmon-gprof-l.sh @@ -38,9 +38,9 @@ export LC_ALL set -e exec 2>&1 -actual=${program}.actual -expected=${program}.expected -expected_dot=${program}.expected_dot +actual=${program}.actual-l +expected=${program}.expected-l +expected_dot=${program}.expected_dot-l cleanup () { rm -f "$actual" rm -f "$expected" |