automatic DPDK test reports
 help / color / mirror / Atom feed
* |WARNING| pw116925-116931 [PATCH] [v2, 7/7] examples/fips_validation: randomize message for conformance test
@ 2022-09-27  6:20 dpdklab
  0 siblings, 0 replies; only message in thread
From: dpdklab @ 2022-09-27  6:20 UTC (permalink / raw)
  To: test-report; +Cc: dpdk-test-reports

[-- Attachment #1: Type: text/plain, Size: 5453 bytes --]

Test-Label: iol-testing
Test-Status: WARNING
http://dpdk.org/patch/116925

_apply patch failure_

Submitter: Gowrishankar Muthukrishnan <gmuthukrishn@marvell.com>
Date: Tuesday, September 27 2022 06:00:40 
Applied on: CommitID:b9b509246da274cfea47311792ba8400c179c24b
Apply patch set 116925-116931 failed:

Checking patch config/meson.build...
Checking patch doc/guides/sample_app_ug/fips_validation.rst...
error: while searching for:
    * SHA (1, 256, 384, 512) - AFT, MCT
    * TDES-CBC - AFT, MCT
    * TDES-ECB - AFT, MCT


Application Information

error: patch failed: doc/guides/sample_app_ug/fips_validation.rst:66
Checking patch examples/fips_validation/fips_validation.c...
error: while searching for:
	else if (strstr(algo_str, "TDES-CBC") ||
		strstr(algo_str, "TDES-ECB"))
		info.algo = FIPS_TEST_ALGO_TDES;
	else
		return -EINVAL;


error: patch failed: examples/fips_validation/fips_validation.c:471
Checking patch examples/fips_validation/fips_validation.h...
Hunk #4 succeeded at 152 (offset -1 lines).
Hunk #5 succeeded at 184 (offset -1 lines).
Hunk #6 succeeded at 203 (offset -1 lines).
Hunk #7 succeeded at 256 (offset -1 lines).
error: while searching for:

int
parse_test_tdes_json_init(void);
#endif /* USE_JANSSON */

int

error: patch failed: examples/fips_validation/fips_validation.h:302
Hunk #9 succeeded at 390 (offset -7 lines).
Checking patch examples/fips_validation/fips_validation_gcm.c...
Hunk #1 succeeded at 81 (offset 1 line).
Checking patch examples/fips_validation/fips_validation_rsa.c...
.git/rebase-apply/patch:725: new blank line at EOF.
+
Checking patch examples/fips_validation/main.c...
Hunk #1 succeeded at 37 (offset 1 line).
Hunk #2 succeeded at 53 (offset 1 line).
Hunk #3 succeeded at 198 (offset 1 line).
Hunk #4 succeeded at 236 (offset 1 line).
Hunk #5 succeeded at 346 (offset 1 line).
Hunk #6 succeeded at 460 (offset 1 line).
Hunk #7 succeeded at 504 (offset 1 line).
Hunk #8 succeeded at 743 (offset 1 line).
Hunk #9 succeeded at 791 (offset 1 line).
Hunk #10 succeeded at 847 (offset 1 line).
Hunk #11 succeeded at 1283 (offset 1 line).
Hunk #12 succeeded at 1410 (offset 1 line).
Hunk #13 succeeded at 1448 (offset 1 line).
Hunk #14 succeeded at 1554 (offset 1 line).
Hunk #15 succeeded at 2088 (offset -16 lines).
error: while searching for:
	case FIPS_TEST_ALGO_TDES:
		ret = parse_test_tdes_json_init();
		break;
	default:
		return -EINVAL;
	}

error: patch failed: examples/fips_validation/main.c:2033
Checking patch examples/fips_validation/meson.build...
Applied patch config/meson.build cleanly.
Applying patch doc/guides/sample_app_ug/fips_validation.rst with 1 reject...
Rejected hunk #1.
Applying patch examples/fips_validation/fips_validation.c with 1 reject...
Rejected hunk #1.
Applying patch examples/fips_validation/fips_validation.h with 1 reject...
Hunk #1 applied cleanly.
Hunk #2 applied cleanly.
Hunk #3 applied cleanly.
Hunk #4 applied cleanly.
Hunk #5 applied cleanly.
Hunk #6 applied cleanly.
Hunk #7 applied cleanly.
Rejected hunk #8.
Hunk #9 applied cleanly.
Applied patch examples/fips_validation/fips_validation_gcm.c cleanly.
Applied patch examples/fips_validation/fips_validation_rsa.c cleanly.
Applying patch examples/fips_validation/main.c with 1 reject...
Hunk #1 applied cleanly.
Hunk #2 applied cleanly.
Hunk #3 applied cleanly.
Hunk #4 applied cleanly.
Hunk #5 applied cleanly.
Hunk #6 applied cleanly.
Hunk #7 applied cleanly.
Hunk #8 applied cleanly.
Hunk #9 applied cleanly.
Hunk #10 applied cleanly.
Hunk #11 applied cleanly.
Hunk #12 applied cleanly.
Hunk #13 applied cleanly.
Hunk #14 applied cleanly.
Hunk #15 applied cleanly.
Rejected hunk #16.
Applied patch examples/fips_validation/meson.build cleanly.
diff a/doc/guides/sample_app_ug/fips_validation.rst b/doc/guides/sample_app_ug/fips_validation.rst	(rejected hunks)
@@ -66,6 +66,7 @@ ACVP
     * SHA (1, 256, 384, 512) - AFT, MCT
     * TDES-CBC - AFT, MCT
     * TDES-ECB - AFT, MCT
+    * RSA
 
 
 Application Information
diff a/examples/fips_validation/fips_validation.c b/examples/fips_validation/fips_validation.c	(rejected hunks)
@@ -471,6 +471,8 @@ fips_test_parse_one_json_vector_set(void)
 	else if (strstr(algo_str, "TDES-CBC") ||
 		strstr(algo_str, "TDES-ECB"))
 		info.algo = FIPS_TEST_ALGO_TDES;
+	else if (strstr(algo_str, "RSA"))
+		info.algo = FIPS_TEST_ALGO_RSA;
 	else
 		return -EINVAL;
 
diff a/examples/fips_validation/fips_validation.h b/examples/fips_validation/fips_validation.h	(rejected hunks)
@@ -302,6 +333,9 @@ parse_test_sha_json_test_type(void);
 
 int
 parse_test_tdes_json_init(void);
+
+int
+parse_test_rsa_json_init(void);
 #endif /* USE_JANSSON */
 
 int
diff a/examples/fips_validation/main.c b/examples/fips_validation/main.c	(rejected hunks)
@@ -2033,6 +2328,9 @@ fips_test_one_test_group(void)
 	case FIPS_TEST_ALGO_TDES:
 		ret = parse_test_tdes_json_init();
 		break;
+	case FIPS_TEST_ALGO_RSA:
+		ret = parse_test_rsa_json_init();
+		break;
 	default:
 		return -EINVAL;
 	}
Checking patch examples/fips_validation/main.c...
error: examples/fips_validation/main.c: does not match index
Checking patch examples/fips_validation/fips_validation.h...
error: examples/fips_validation/fips_validation.h: does not match index
Checking patch examples/fips_validation/fips_validation_rsa.c...
error: examples/fips_validation/fips_validation_rsa.c: does not exist in index

https://lab.dpdk.org/results/dashboard/patchsets/23650/

UNH-IOL DPDK Community Lab

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-09-27  6:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-27  6:20 |WARNING| pw116925-116931 [PATCH] [v2, 7/7] examples/fips_validation: randomize message for conformance test dpdklab

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).