diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 55f6f9e6a0..1939703d8c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -157,9 +157,9 @@ jobs: $ManifestPath = ".\src\manifest\MsQuicEtw.man" wevtutil.exe um $ManifestPath wevtutil.exe im $ManifestPath /rf:$($MsQuicDll) /mf:$($MsQuicDll) - - name: Stop lttng-sessiond - if: matrix.vec.plat == 'linux' - run: sudo systemctl stop lttng-sessiond + # - name: Stop lttng-sessiond + # if: matrix.vec.plat == 'linux' + # run: sudo systemctl stop lttng-sessiond - name: Test if: matrix.vec.os == 'WinServerPrerelease' shell: pwsh @@ -169,7 +169,7 @@ jobs: if: matrix.vec.os != 'WinServerPrerelease' shell: pwsh timeout-minutes: 120 - run: scripts/test.ps1 -Config ${{ matrix.vec.config }} -Arch ${{ matrix.vec.arch }} -Tls ${{ matrix.vec.tls }} -OsRunner ${{ matrix.vec.os }} -GHA -LogProfile Full.Light -GenerateXmlResults ${{ matrix.vec.xdp }} ${{ matrix.vec.qtip }} -Filter "*UdpBind*" + run: sudo scripts/test.ps1 -Config ${{ matrix.vec.config }} -Arch ${{ matrix.vec.arch }} -Tls ${{ matrix.vec.tls }} -OsRunner ${{ matrix.vec.os }} -GHA -LogProfile Full.Light -GenerateXmlResults ${{ matrix.vec.xdp }} ${{ matrix.vec.qtip }} -Filter "*UdpBind*" - name: Upload on Failure uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 if: failure() diff --git a/scripts/log.ps1 b/scripts/log.ps1 index c2f8fe580b..42fe180e17 100644 --- a/scripts/log.ps1 +++ b/scripts/log.ps1 @@ -237,7 +237,7 @@ function Log-Start { lttng -q create msquiclive --live } else { New-Item -Path $TempLTTngDir -ItemType Directory -Force | Out-Null - lttng-sessiond -v > ${TempLTTngDir}/lttng.log 2>&1 & + lttng-sessiond --verbose --verbose-consumer > ${TempLTTngDir}/lttng.log 2>&1 & sleep 2 $Command = "lttng create $InstanceName -o=$TempLTTngDir" Invoke-Expression $Command | Write-Debug