From a32ced19adc0859f2c3dc20cfa551c33073ee29f Mon Sep 17 00:00:00 2001 From: Joe Spall Date: Tue, 1 Jul 2025 12:33:29 -0700 Subject: Tags unreferenced parameters as such --- spb/SpbTestTool/exe/command.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) 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; } -- cgit v1.3.1 From 28dff8119c168f09704dfe47af870867dc64506c Mon Sep 17 00:00:00 2001 From: Joe Spall Date: Thu, 3 Jul 2025 09:26:17 -0700 Subject: Remove exclusion for SpbTestTool --- exclusions.csv | 1 - 1 file changed, 1 deletion(-) 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" -- cgit v1.3.1