summaryrefslogtreecommitdiffstats
path: root/src/intel
diff options
context:
space:
mode:
authorLionel Landwerlin <[email protected]>2019-06-08 23:48:02 +0300
committerLionel Landwerlin <[email protected]>2019-06-09 19:45:13 +0000
commit17898a9b7e0cd3bfc95c186586e5cafa1e3a2c9d (patch)
tree869eb3473f6534fe03909234f0d7579125558b26 /src/intel
parent93349d71183d4a50ef5ad90b32cb96b9f84d3eec (diff)
intel/gpu_dump: fix argument passing
We were dropping "/' around arguments grouped together. This was triggering failures with : $ ./framemetrics -g "Memory Writes Distribution Gen9" -o /tmp/output.csv -f ./my.trace 10 11 Signed-off-by: Lionel Landwerlin <[email protected]> Reviewed-by: Jordan Justen <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/intel')
-rwxr-xr-xsrc/intel/tools/intel_dump_gpu.in4
-rwxr-xr-xsrc/intel/tools/intel_sanitize_gpu.in2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/intel/tools/intel_dump_gpu.in b/src/intel/tools/intel_dump_gpu.in
index a4ceaba7090..f9fed66c1e3 100755
--- a/src/intel/tools/intel_dump_gpu.in
+++ b/src/intel/tools/intel_dump_gpu.in
@@ -115,9 +115,9 @@ tmp_file=`mktemp`
echo -e $args > $tmp_file
if [ -z $gdb ]; then
- LD_PRELOAD="$ld_preload" INTEL_DUMP_GPU_CONFIG=$tmp_file $@
+ LD_PRELOAD="$ld_preload" INTEL_DUMP_GPU_CONFIG=$tmp_file "$@"
else
- gdb -iex "set exec-wrapper env LD_PRELOAD=$ld_preload INTEL_DUMP_GPU_CONFIG=$tmp_file" --args $@
+ gdb -iex "set exec-wrapper env LD_PRELOAD=$ld_preload INTEL_DUMP_GPU_CONFIG=$tmp_file" --args "$@"
fi
ret=$?
diff --git a/src/intel/tools/intel_sanitize_gpu.in b/src/intel/tools/intel_sanitize_gpu.in
index a5b032abc6d..912387ae656 100755
--- a/src/intel/tools/intel_sanitize_gpu.in
+++ b/src/intel/tools/intel_sanitize_gpu.in
@@ -53,5 +53,5 @@ ld_preload="@install_libexecdir@/libintel_sanitize_gpu.so${LD_PRELOAD:+:$LD_PREL
if [ -z $gdb ]; then
LD_PRELOAD=$ld_preload exec "$@"
else
- gdb -iex "set exec-wrapper env LD_PRELOAD=$ld_preload" --args $@
+ gdb -iex "set exec-wrapper env LD_PRELOAD=$ld_preload" --args "$@"
fi