mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-30 18:05:48 +01:00 
			
		
		
		
	test: fix a couple NULL vs IS_ERR() checks
The x509_cert_parse() and pkcs7_parse_message() functions return error pointers. They don't return NULL. Update the checks accordingly. Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
		| @@ -120,7 +120,7 @@ static int lib_asn1_x509(struct unit_test_state *uts) | |||||||
|  |  | ||||||
| 	cert = x509_cert_parse(cert_data, cert_data_len); | 	cert = x509_cert_parse(cert_data, cert_data_len); | ||||||
|  |  | ||||||
| 	ut_assertf(cert != NULL, "decoding failed\n"); | 	ut_assertf(!IS_ERR(cert), "decoding failed\n"); | ||||||
| 	ut_assertf(!strcmp(cert->subject, "Linaro: Tester"), | 	ut_assertf(!strcmp(cert->subject, "Linaro: Tester"), | ||||||
| 		   "subject doesn't match\n"); | 		   "subject doesn't match\n"); | ||||||
| 	ut_assertf(!strcmp(cert->issuer, "Linaro: Tester"), | 	ut_assertf(!strcmp(cert->issuer, "Linaro: Tester"), | ||||||
| @@ -313,7 +313,7 @@ static int lib_asn1_pkcs7(struct unit_test_state *uts) | |||||||
|  |  | ||||||
| 	pkcs7 = pkcs7_parse_message(image_pk7, image_pk7_len); | 	pkcs7 = pkcs7_parse_message(image_pk7, image_pk7_len); | ||||||
|  |  | ||||||
| 	ut_assertf(pkcs7 != NULL, "decoding failed\n"); | 	ut_assertf(!IS_ERR(pkcs7), "decoding failed\n"); | ||||||
| 	ut_assertf(pkcs7->data_len == 104, "signature size doesn't match\n"); | 	ut_assertf(pkcs7->data_len == 104, "signature size doesn't match\n"); | ||||||
| 	ut_assertf(pkcs7->signed_infos != NULL, "sign-info doesn't exist\n"); | 	ut_assertf(pkcs7->signed_infos != NULL, "sign-info doesn't exist\n"); | ||||||
| 	ut_assertf(pkcs7->signed_infos->msgdigest_len == 32, | 	ut_assertf(pkcs7->signed_infos->msgdigest_len == 32, | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user