diff options
| author | v-junyli <[email protected]> | 2025-07-03 20:41:36 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-03 20:41:36 -0700 |
| commit | 494ac105f8a4165ae4319246d89217ea5eac8b81 (patch) | |
| tree | 3b0dcd4a84effe2d19adcce6153ab15097b07efe | |
| parent | d19972052daf3b3fcb92f10ea79d4e5995f9ea4a (diff) | |
| parent | bf031504a51bf67e33e8280ef51d2189c434f04a (diff) | |
Merge pull request #1308 from microsoft/main
FI: main -> develop WDK 4204
| -rw-r--r-- | exclusions.csv | 1 | ||||
| -rw-r--r-- | spb/SpbTestTool/exe/command.h | 24 |
2 files changed, 24 insertions, 1 deletions
diff --git a/exclusions.csv b/exclusions.csv index 1a6884f7..63d5e24a 100644 --- a/exclusions.csv +++ b/exclusions.csv @@ -6,7 +6,6 @@ network\trans\WFPSampler,Debug|ARM64,,22621,Only NI: Only ARM: Fails to build on prm,*,,22621,Only NI: Not supported on NI. powerlimit\plclient,*,,22621,Only NI: Not supported on NI. powerlimit\plpolicy,*,,22621,Only NI: Not supported on NI. -spb\spbtesttool,*,,26100,"failure introduced in VS17.14, suppressed until fix" general\pcidrv,*,,26100,"failure introduced in VS17.14, suppressed until fix" serial\serial,*,,26100,"failure introduced in VS17.14, suppressed until fix" network\wlan\wdi,*,,26100,"failure introduced in VS17.14, suppressed until fix" diff --git a/spb/SpbTestTool/exe/command.h b/spb/SpbTestTool/exe/command.h index 5e2633bd..d3f887b0 100644 --- a/spb/SpbTestTool/exe/command.h +++ b/spb/SpbTestTool/exe/command.h @@ -183,6 +183,8 @@ public: _In_opt_ string Tag ) : CCommand("open", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -208,6 +210,8 @@ public: _In_opt_ string Tag ) : CCommand("close", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -233,6 +237,8 @@ public: _In_opt_ string Tag ) : CCommand("lock", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -258,6 +264,8 @@ public: _In_opt_ string Tag ) : CCommand("unlock", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -283,6 +291,8 @@ public: _In_opt_ string Tag ) : CCommand("lockconn", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -308,6 +318,8 @@ public: _In_opt_ string Tag ) : CCommand("unlockconn", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -335,6 +347,8 @@ public: _In_opt_ string Tag ) : CCommand("read", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -392,6 +406,8 @@ public: _In_opt_ string Tag ) : CCommand("write", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -446,6 +462,8 @@ public: _In_opt_ string Tag ) : CCommand("writeread", Parameters) { + UNREFERENCED_PARAMETER(Tag); + WriteBuffer = NULL; return; } @@ -524,6 +542,8 @@ public: _In_opt_ string Tag ) : CCommand("fullduplex", Parameters) { + UNREFERENCED_PARAMETER(Tag); + WriteBuffer = NULL; return; } @@ -597,6 +617,8 @@ public: _In_opt_ string Tag ) : CCommand("signal", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -622,6 +644,8 @@ public: _In_opt_ string Tag ) : CCommand("waitoninterrupt", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } |
