iwasakims commented on pull request #3019: URL: https://github.com/apache/hadoop/pull/3019#issuecomment-842303136
On CentOS 8, only `TestCryptoCodec#testOpensslSm4CtrCryptoCodec` was skipped as expected. ``` $ mvn test -Pnative -Dtest=TestCryptoCodec,TestOpensslCipher ... [INFO] Running org.apache.hadoop.crypto.TestCryptoCodec [WARNING] Tests run: 5, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 11.538 s - in org.apache.hadoop.crypto.TestCryptoCodec [INFO] Running org.apache.hadoop.crypto.TestOpensslCipher [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.143 s - in org.apache.hadoop.crypto.TestOpensslCipher ``` On Ubuntu 18.04, all tests of TestCryptoCodec were executed since SM4 is supported by OpenSSL. ``` $ mvn test -Pnative -Dtest=TestCryptoCodec,TestOpensslCipher ... INFO] Running org.apache.hadoop.crypto.TestCryptoCodec [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 12.002 s - in org.apache.hadoop.crypto.TestCryptoCodec [INFO] Running org.apache.hadoop.crypto.TestOpensslCipher [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.098 s - in org.apache.hadoop.crypto.TestOpensslCipher ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
