Skip to content

Commit 0b77fe4

Browse files
namhyungacmel
authored andcommitted
perf test: Replace data symbol test workload with datasym
So that it can get rid of requirement of a compiler. $ sudo ./perf test -v 109 109: Test data symbol : --- start --- test child forked, pid 844526 Recording workload... [ perf record: Woken up 2 times to write data ] [ perf record: Captured and wrote 0.354 MB /tmp/__perf_test.perf.data.GFeZO (4847 samples) ] Cleaning up files... test child finished with 0 ---- end ---- Test data symbol: Ok Signed-off-by: Namhyung Kim <namhyung@kernel.org> Tested-by: James Clark <james.clark@arm.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Athira Jajeev <atrajeev@linux.vnet.ibm.com> Cc: German Gomez <german.gomez@arm.com> Cc: Ian Rogers <irogers@google.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Leo Yan <leo.yan@linaro.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Zhengjun Xing <zhengjun.xing@linux.intel.com> Link: https://lore.kernel.org/r/20221116233854.1596378-13-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
1 parent 3dfc01f commit 0b77fe4

File tree

1 file changed

+1
-28
lines changed

1 file changed

+1
-28
lines changed

tools/perf/tests/shell/test_data_symbol.sh

Lines changed: 1 addition & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,7 @@ skip_if_no_mem_event() {
1111

1212
skip_if_no_mem_event || exit 2
1313

14-
# skip if there's no compiler
15-
if ! [ -x "$(command -v cc)" ]; then
16-
echo "skip: no compiler, install gcc"
17-
exit 2
18-
fi
19-
20-
TEST_PROGRAM=$(mktemp /tmp/__perf_test.program.XXXXX)
14+
TEST_PROGRAM="perf test -w datasym"
2115
PERF_DATA=$(mktemp /tmp/__perf_test.perf.data.XXXXX)
2216

2317
check_result() {
@@ -45,31 +39,10 @@ cleanup_files()
4539
{
4640
echo "Cleaning up files..."
4741
rm -f ${PERF_DATA}
48-
rm -f ${TEST_PROGRAM}
4942
}
5043

5144
trap cleanup_files exit term int
5245

53-
# compile test program
54-
echo "Compiling test program..."
55-
cat << EOF | cc -o ${TEST_PROGRAM} -x c -
56-
typedef struct _buf {
57-
char data1;
58-
char reserved[55];
59-
char data2;
60-
} buf __attribute__((aligned(64)));
61-
62-
static buf buf1;
63-
64-
int main(void) {
65-
for (;;) {
66-
buf1.data1++;
67-
buf1.data2 += buf1.data1;
68-
}
69-
return 0;
70-
}
71-
EOF
72-
7346
echo "Recording workload..."
7447

7548
# perf mem/c2c internally uses IBS PMU on AMD CPU which doesn't support

0 commit comments

Comments
 (0)