Skip to content

Commit 5b85309

Browse files
committed
Fix NSID in unsupportRrvdFields_r10b.cpp
According to spec v.1_0b : "a value of FFFFFFFFh is used to specify that the global values should be returned." Therefore added code block sets NSID to FFFFFFFFh then returns the globals.
1 parent 3bc37a2 commit 5b85309

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

GrpAdminGetLogPgCmd/unsupportRrvdFields_r10b.cpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,12 @@ UnsupportRrvdFields_r10b::RunCoreTest()
145145
LOG_NRM("Issue GetLogPage cmd after setting reserved bits.");
146146
IO::SendAndReapCmd(mGrpName, mTestName, CALC_TIMEOUT_ms(1), asq, acq,
147147
getLogPgCmd, "rsvd.set", true);
148-
148+
149+
i = 0xffffffff;
150+
getLogPgCmd->SetNSID(i);
151+
work = str(boost::format("namspc%d") % i);
152+
IO::SendAndReapCmd(mGrpName, mTestName, CALC_TIMEOUT_ms(1), asq, acq,
153+
getLogPgCmd, work, true);
149154
}
150155

151156
} // namespace

0 commit comments

Comments
 (0)