crypto: testmgr - Remove NULL dst acomp tests
authorHerbert Xu <herbert@gondor.apana.org.au>
Sun, 9 Mar 2025 02:43:24 +0000 (10:43 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Sat, 15 Mar 2025 08:21:23 +0000 (16:21 +0800)
In preparation for the partial removal of NULL dst acomp support,
remove the tests for them.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/testmgr.c

index cbce769b16ef595e0dc89c4ec1204cafbeef54de..140872765dcd876380c77df7f8b11a3ff48af261 100644 (file)
@@ -3522,21 +3522,6 @@ static int test_acomp(struct crypto_acomp *tfm,
                        goto out;
                }
 
-#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
-               crypto_init_wait(&wait);
-               sg_init_one(&src, input_vec, ilen);
-               acomp_request_set_params(req, &src, NULL, ilen, 0);
-
-               ret = crypto_wait_req(crypto_acomp_compress(req), &wait);
-               if (ret) {
-                       pr_err("alg: acomp: compression failed on NULL dst buffer test %d for %s: ret=%d\n",
-                              i + 1, algo, -ret);
-                       kfree(input_vec);
-                       acomp_request_free(req);
-                       goto out;
-               }
-#endif
-
                kfree(input_vec);
                acomp_request_free(req);
        }
@@ -3598,20 +3583,6 @@ static int test_acomp(struct crypto_acomp *tfm,
                        goto out;
                }
 
-#ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
-               crypto_init_wait(&wait);
-               acomp_request_set_params(req, &src, NULL, ilen, 0);
-
-               ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
-               if (ret) {
-                       pr_err("alg: acomp: decompression failed on NULL dst buffer test %d for %s: ret=%d\n",
-                              i + 1, algo, -ret);
-                       kfree(input_vec);
-                       acomp_request_free(req);
-                       goto out;
-               }
-#endif
-
                kfree(input_vec);
                acomp_request_free(req);
        }