Skip to content

Commit

Permalink
Remove extra double-quotes for extraOutputFile in performance-helper.…
Browse files Browse the repository at this point in the history
…psm1 (#3704)
  • Loading branch information
csujedihy committed Jun 15, 2023
1 parent e6a1ffd commit b08b0ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .azure/azure-pipelines.perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ trigger:
- .azure/templates/run-performance.yml
- .gitmodules
- scripts/performance.ps1
- scripts/performance-helper.ps1
- scripts/performance-helper.psm1
- scripts/prepare-machine.ps1
- scripts/RemoteTests.json
- scripts/xdp-devkit.json
Expand Down
2 changes: 1 addition & 1 deletion scripts/performance-helper.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ function Invoke-LocalExe {
mkdir $HistogramDir | Out-Null
}
$HistogramFilePath = Join-Path $HistogramDir $HistogramFileName
$RunArgs = """--extraOutputFile:$HistogramFilePath"" $RunArgs"
$RunArgs = "--extraOutputFile:$HistogramFilePath $RunArgs"
if ($IsLinux -and $Record) {
# `perf record -F max` generates too big data to finish within default Timeout (120s)
$Timeout = 2000
Expand Down

0 comments on commit b08b0ec

Please sign in to comment.