* [PATCH] perf test: Fixed masked error condition in perf data convert test
@ 2024-01-12 12:07 James Clark
2024-01-16 21:54 ` Namhyung Kim
2024-01-17 7:37 ` Ilkka Koskinen
0 siblings, 2 replies; 3+ messages in thread
From: James Clark @ 2024-01-12 12:07 UTC (permalink / raw)
To: linux-perf-users, ilkka
Cc: James Clark, Peter Zijlstra, Ingo Molnar,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Alexander Shishkin, Jiri Olsa, Ian Rogers, Adrian Hunter,
Athira Rajeev, Anup Sharma, linux-kernel
The test does set -e, so any errors go straight to the exit handler,
where it returns err=0 (success). Fix it by leaving err=1 from the
beginning and only set the success code if it ran all the way to the end
without errors.
Also remove the exit code argument from the last exit because it doesn't
do anything, it's always replaced by err in the exit handler.
Fixes: 68d124182610 ("perf test: Add test validating JSON generated by 'perf data convert --to-json'")
Signed-off-by: James Clark <james.clark@arm.com>
---
tools/perf/tests/shell/test_perf_data_converter_json.sh | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/tools/perf/tests/shell/test_perf_data_converter_json.sh b/tools/perf/tests/shell/test_perf_data_converter_json.sh
index c4f1b59d116f..1781b7215c11 100755
--- a/tools/perf/tests/shell/test_perf_data_converter_json.sh
+++ b/tools/perf/tests/shell/test_perf_data_converter_json.sh
@@ -4,7 +4,7 @@
set -e
-err=0
+err=1
shelldir=$(dirname "$0")
# shellcheck source=lib/setup_python.sh
@@ -36,7 +36,6 @@ test_json_converter_command()
echo "Perf Data Converter Command to JSON [SUCCESS]"
else
echo "Perf Data Converter Command to JSON [FAILED]"
- err=1
exit
fi
}
@@ -49,7 +48,6 @@ validate_json_format()
echo "The file contains valid JSON format [SUCCESS]"
else
echo "The file does not contain valid JSON format [FAILED]"
- err=1
exit
fi
else
@@ -62,4 +60,7 @@ validate_json_format()
test_json_converter_command
validate_json_format
-exit ${err}
+# Set -e is on, so it was only successful if it ran up to this point.
+# Therefore only set err=0 here.
+err=0
+exit
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] perf test: Fixed masked error condition in perf data convert test
2024-01-12 12:07 [PATCH] perf test: Fixed masked error condition in perf data convert test James Clark
@ 2024-01-16 21:54 ` Namhyung Kim
2024-01-17 7:37 ` Ilkka Koskinen
1 sibling, 0 replies; 3+ messages in thread
From: Namhyung Kim @ 2024-01-16 21:54 UTC (permalink / raw)
To: James Clark
Cc: linux-perf-users, ilkka, Peter Zijlstra, Ingo Molnar,
Arnaldo Carvalho de Melo, Mark Rutland, Alexander Shishkin,
Jiri Olsa, Ian Rogers, Adrian Hunter, Athira Rajeev, Anup Sharma,
linux-kernel
On Fri, Jan 12, 2024 at 4:07 AM James Clark <james.clark@arm.com> wrote:
>
> The test does set -e, so any errors go straight to the exit handler,
> where it returns err=0 (success). Fix it by leaving err=1 from the
> beginning and only set the success code if it ran all the way to the end
> without errors.
>
> Also remove the exit code argument from the last exit because it doesn't
> do anything, it's always replaced by err in the exit handler.
>
> Fixes: 68d124182610 ("perf test: Add test validating JSON generated by 'perf data convert --to-json'")
> Signed-off-by: James Clark <james.clark@arm.com>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Thanks,
Namhyung
> ---
> tools/perf/tests/shell/test_perf_data_converter_json.sh | 9 +++++----
> 1 file changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/tools/perf/tests/shell/test_perf_data_converter_json.sh b/tools/perf/tests/shell/test_perf_data_converter_json.sh
> index c4f1b59d116f..1781b7215c11 100755
> --- a/tools/perf/tests/shell/test_perf_data_converter_json.sh
> +++ b/tools/perf/tests/shell/test_perf_data_converter_json.sh
> @@ -4,7 +4,7 @@
>
> set -e
>
> -err=0
> +err=1
>
> shelldir=$(dirname "$0")
> # shellcheck source=lib/setup_python.sh
> @@ -36,7 +36,6 @@ test_json_converter_command()
> echo "Perf Data Converter Command to JSON [SUCCESS]"
> else
> echo "Perf Data Converter Command to JSON [FAILED]"
> - err=1
> exit
> fi
> }
> @@ -49,7 +48,6 @@ validate_json_format()
> echo "The file contains valid JSON format [SUCCESS]"
> else
> echo "The file does not contain valid JSON format [FAILED]"
> - err=1
> exit
> fi
> else
> @@ -62,4 +60,7 @@ validate_json_format()
> test_json_converter_command
> validate_json_format
>
> -exit ${err}
> +# Set -e is on, so it was only successful if it ran up to this point.
> +# Therefore only set err=0 here.
> +err=0
> +exit
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] perf test: Fixed masked error condition in perf data convert test
2024-01-12 12:07 [PATCH] perf test: Fixed masked error condition in perf data convert test James Clark
2024-01-16 21:54 ` Namhyung Kim
@ 2024-01-17 7:37 ` Ilkka Koskinen
1 sibling, 0 replies; 3+ messages in thread
From: Ilkka Koskinen @ 2024-01-17 7:37 UTC (permalink / raw)
To: James Clark
Cc: linux-perf-users, ilkka, Peter Zijlstra, Ingo Molnar,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Alexander Shishkin, Jiri Olsa, Ian Rogers, Adrian Hunter,
Athira Rajeev, Anup Sharma, linux-kernel
On Fri, 12 Jan 2024, James Clark wrote:
> The test does set -e, so any errors go straight to the exit handler,
> where it returns err=0 (success). Fix it by leaving err=1 from the
> beginning and only set the success code if it ran all the way to the end
> without errors.
>
> Also remove the exit code argument from the last exit because it doesn't
> do anything, it's always replaced by err in the exit handler.
>
> Fixes: 68d124182610 ("perf test: Add test validating JSON generated by 'perf data convert --to-json'")
> Signed-off-by: James Clark <james.clark@arm.com>
Looks good to me.
Reviewed-by: Ilkka Koskinen <ilkka@os.amperecomputing.com>
Cheers, Ilkka
> ---
> tools/perf/tests/shell/test_perf_data_converter_json.sh | 9 +++++----
> 1 file changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/tools/perf/tests/shell/test_perf_data_converter_json.sh b/tools/perf/tests/shell/test_perf_data_converter_json.sh
> index c4f1b59d116f..1781b7215c11 100755
> --- a/tools/perf/tests/shell/test_perf_data_converter_json.sh
> +++ b/tools/perf/tests/shell/test_perf_data_converter_json.sh
> @@ -4,7 +4,7 @@
>
> set -e
>
> -err=0
> +err=1
>
> shelldir=$(dirname "$0")
> # shellcheck source=lib/setup_python.sh
> @@ -36,7 +36,6 @@ test_json_converter_command()
> echo "Perf Data Converter Command to JSON [SUCCESS]"
> else
> echo "Perf Data Converter Command to JSON [FAILED]"
> - err=1
> exit
> fi
> }
> @@ -49,7 +48,6 @@ validate_json_format()
> echo "The file contains valid JSON format [SUCCESS]"
> else
> echo "The file does not contain valid JSON format [FAILED]"
> - err=1
> exit
> fi
> else
> @@ -62,4 +60,7 @@ validate_json_format()
> test_json_converter_command
> validate_json_format
>
> -exit ${err}
> +# Set -e is on, so it was only successful if it ran up to this point.
> +# Therefore only set err=0 here.
> +err=0
> +exit
> --
> 2.34.1
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-01-17 7:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-12 12:07 [PATCH] perf test: Fixed masked error condition in perf data convert test James Clark
2024-01-16 21:54 ` Namhyung Kim
2024-01-17 7:37 ` Ilkka Koskinen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).