Skip to content

Commit 8ca6e63

Browse files
authored
Merge branch 'main' into copilot/fix-3575
2 parents 7c19d46 + ce6c3c5 commit 8ca6e63

27 files changed

+1422
-597
lines changed

.azure/OneBranch.PullRequest.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,10 @@ jobs:
8080
parameters:
8181
name: unit_tests
8282
pre_test: appverif -enable Exceptions Handles Heaps Leak Locks Memory SRWLock Threadpool TLS DangerousAPIs DirtyStacks TimeRollOver -for unit_tests.exe
83-
test_command: '.\unit_tests.exe -d yes ~[processes]'
83+
# Exclude [processes] test that ASAN can't work with.
84+
# Exclude ~printk, ~recursive_tail_call, and ~sequential_tail_call tests as they don't work with ASAN due to
85+
# as usersim is linked with static CRT libraries which breaks stdout redirection.
86+
test_command: '.\unit_tests.exe -d yes ~[processes] ~printk ~recursive_tail_call ~sequential_tail_call'
8487
dependency: regular
8588
build_artifact: Build
8689
environment: windows-2022

.github/workflows/check_wdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: Windows-latest
2323
steps:
2424
- name: Harden Runner
25-
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
25+
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
2626
with:
2727
egress-policy: audit
2828

0 commit comments

Comments
 (0)