Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion exclusions.csv
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
24 changes: 24 additions & 0 deletions spb/SpbTestTool/exe/command.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,8 @@ class COpenCommand : public CCommand
_In_opt_ string Tag
) : CCommand("open", Parameters)
{
UNREFERENCED_PARAMETER(Tag);

return;
}

Expand All @@ -208,6 +210,8 @@ class CCloseCommand : public CCommand
_In_opt_ string Tag
) : CCommand("close", Parameters)
{
UNREFERENCED_PARAMETER(Tag);

return;
}

Expand All @@ -233,6 +237,8 @@ class CLockCommand : public CCommand
_In_opt_ string Tag
) : CCommand("lock", Parameters)
{
UNREFERENCED_PARAMETER(Tag);

return;
}

Expand All @@ -258,6 +264,8 @@ class CUnlockCommand : public CCommand
_In_opt_ string Tag
) : CCommand("unlock", Parameters)
{
UNREFERENCED_PARAMETER(Tag);

return;
}

Expand All @@ -283,6 +291,8 @@ class CLockConnectionCommand : public CCommand
_In_opt_ string Tag
) : CCommand("lockconn", Parameters)
{
UNREFERENCED_PARAMETER(Tag);

return;
}

Expand All @@ -308,6 +318,8 @@ class CUnlockConnectionCommand : public CCommand
_In_opt_ string Tag
) : CCommand("unlockconn", Parameters)
{
UNREFERENCED_PARAMETER(Tag);

return;
}

Expand Down Expand Up @@ -335,6 +347,8 @@ class CReadCommand : public CCommand
_In_opt_ string Tag
) : CCommand("read", Parameters)
{
UNREFERENCED_PARAMETER(Tag);

return;
}

Expand Down Expand Up @@ -392,6 +406,8 @@ class CWriteCommand : public CCommand
_In_opt_ string Tag
) : CCommand("write", Parameters)
{
UNREFERENCED_PARAMETER(Tag);

return;
}

Expand Down Expand Up @@ -446,6 +462,8 @@ class CWriteReadCommand : public CCommand
_In_opt_ string Tag
) : CCommand("writeread", Parameters)
{
UNREFERENCED_PARAMETER(Tag);

WriteBuffer = NULL;
return;
}
Expand Down Expand Up @@ -524,6 +542,8 @@ class CFullDuplexCommand : public CCommand
_In_opt_ string Tag
) : CCommand("fullduplex", Parameters)
{
UNREFERENCED_PARAMETER(Tag);

WriteBuffer = NULL;
return;
}
Expand Down Expand Up @@ -597,6 +617,8 @@ class CSignalInterruptCommand : public CCommand
_In_opt_ string Tag
) : CCommand("signal", Parameters)
{
UNREFERENCED_PARAMETER(Tag);

return;
}

Expand All @@ -622,6 +644,8 @@ class CWaitOnInterruptCommand : public CCommand
_In_opt_ string Tag
) : CCommand("waitoninterrupt", Parameters)
{
UNREFERENCED_PARAMETER(Tag);

return;
}

Expand Down