Explorar o código

ipa-kernel-tests: fixed IPAHeaderInsertionTest004

Add Header with len value of 0 is valid.
Removed the part in the test which expect to fail with value of 0.

Signed-off-by: Dor Deri <[email protected]>
Dor Deri %!s(int64=2) %!d(string=hai) anos
pai
achega
efb13fad03
Modificáronse 1 ficheiros con 2 adicións e 6 borrados
  1. 2 6
      kernel-tests/HeaderInsertionTests.cpp

+ 2 - 6
kernel-tests/HeaderInsertionTests.cpp

@@ -828,13 +828,9 @@ public:
 	virtual bool TestLogic() {
 
 		// Try to add headers with invalid values.
-		// Valid values are between 1 to IPA_HDR_MAX_SIZE (64).
-		// We expect the below functions to fail.
-		if (AddSingleHeaderAndCheck(0)) {
-			LOG_MSG_ERROR("This is unexpected, this can't succeed");
-			return false;
-		}
+		// Valid values are between 0 to IPA_HDR_MAX_SIZE (64).
 
+		// We expect the below function to fail.
 		if (AddSingleHeaderAndCheck(MAX_HEADER_SIZE + 1)) {
 			LOG_MSG_ERROR("This is unexpected, this can't succeed");
 			return false;