File perf-tests-Remove-bash-construct-from-record-zstd_comp_decomp.sh.patch of Package perf
59
1
From: James Clark <james.clark@arm.com>
2
Date: Thu, 28 Oct 2021 14:48:26 +0100
3
Subject: perf tests: Remove bash construct from record+zstd_comp_decomp.sh
4
Git-commit: a9cdc1c5e3700a5200e5ca1f90b6958b6483845b
5
Patch-mainline: v5.16-rc1
6
References: git-fixes
7
8
Commit 463538a383a2 ("perf tests: Fix test 68 zstd compression for
9
s390") inadvertently removed the -g flag from all platforms rather than
10
just s390, because the [[ ]] construct fails in sh. Changing to single
11
brackets restores testing of call graphs and removes the following error
12
from the output:
13
14
$ ./perf test -v 85
15
85: Zstd perf.data compression/decompression :
16
--- start ---
17
test child forked, pid 50643
18
Collecting compressed record file:
19
./tests/shell/record+zstd_comp_decomp.sh: 15: [[: not found
20
21
Fixes: 463538a383a2 ("perf tests: Fix test 68 zstd compression for s390")
22
Signed-off-by: James Clark <james.clark@arm.com>
23
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
24
Cc: Florian Fainelli <f.fainelli@gmail.com>
25
Cc: Ian Rogers <irogers@google.com>
26
Cc: Jiri Olsa <jolsa@redhat.com>
27
Cc: John Fastabend <john.fastabend@gmail.com>
28
Cc: KP Singh <kpsingh@kernel.org>
29
Cc: Mark Rutland <mark.rutland@arm.com>
30
Cc: Martin KaFai Lau <kafai@fb.com>
31
Cc: Namhyung Kim <namhyung@kernel.org>
32
Cc: Song Liu <songliubraving@fb.com>
33
Cc: Sumanth Korikkar <sumanthk@linux.ibm.com>
34
Cc: Thomas Richter <tmricht@linux.ibm.com>
35
Cc: Yonghong Song <yhs@fb.com>
36
Cc: bpf@vger.kernel.org
37
Cc: netdev@vger.kernel.org
38
Link: https://lore.kernel.org/r/20211028134828.65774-3-james.clark@arm.com
39
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
40
Signed-off-by: Tony Jones <tonyj@suse.de>
41
---
42
tools/perf/tests/shell/record+zstd_comp_decomp.sh | 2 +-
43
1 file changed, 1 insertion(+), 1 deletion(-)
44
45
diff --git a/tools/perf/tests/shell/record+zstd_comp_decomp.sh b/tools/perf/tests/shell/record+zstd_comp_decomp.sh
46
index 8a168cf8bacc..49bd875d5122 100755
47
--- a/tools/perf/tests/shell/record+zstd_comp_decomp.sh
48
+++ b/tools/perf/tests/shell/record+zstd_comp_decomp.sh
49
50
51
collect_z_record() {
52
echo "Collecting compressed record file:"
53
- [[ "$(uname -m)" != s390x ]] && gflag='-g'
54
+ [ "$(uname -m)" != s390x ] && gflag='-g'
55
$perf_tool record -o $trace_file $gflag -z -F 5000 -- \
56
dd count=500 if=/dev/urandom of=/dev/null
57
}
58
59