зеркало из https://github.com/microsoft/msquic.git
Skip Unit Tests in Code Coverage (#4199)
This commit is contained in:
Родитель
045cd64ef4
Коммит
35f819aa1d
|
@ -74,7 +74,7 @@ jobs:
|
|||
shell: pwsh
|
||||
timeout-minutes: 120
|
||||
continue-on-error: true
|
||||
run: scripts/test.ps1 -NoProgress -IsolationMode Batch -CodeCoverage -Config ${{ matrix.vec.config }} -Arch ${{ matrix.vec.arch }} -Tls ${{ matrix.vec.tls }} -LogProfile Full.Light ${{ matrix.vec.xdp }} ${{ matrix.vec.qtip }}
|
||||
run: scripts/test.ps1 -NoProgress -IsolationMode Batch -SkipUnitTests -CodeCoverage -Config ${{ matrix.vec.config }} -Arch ${{ matrix.vec.arch }} -Tls ${{ matrix.vec.tls }} -LogProfile Full.Light ${{ matrix.vec.xdp }} ${{ matrix.vec.qtip }}
|
||||
- name: Upload Results
|
||||
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
|
||||
with:
|
||||
|
|
|
@ -240,7 +240,9 @@ public:
|
|||
Config.Name = Name;
|
||||
Config.Callback = WatchdogThreadCallback;
|
||||
Config.Context = this;
|
||||
CXPLAT_FRE_ASSERT(QUIC_SUCCEEDED(WatchdogThread.Create(&Config)));
|
||||
if (WatchdogTimeoutMs != UINT32_MAX) {
|
||||
CXPLAT_FRE_ASSERT(QUIC_SUCCEEDED(WatchdogThread.Create(&Config)));
|
||||
}
|
||||
}
|
||||
~CxPlatWatchdog() noexcept {
|
||||
ShutdownEvent.Set();
|
||||
|
|
Загрузка…
Ссылка в новой задаче