2017-08-04 69 views
0

私はubuntu 14.04でopesslをアップグレードし、configとmakeは成功ですが、make testが失敗しても、インストールを続行できますか?
メイク・テスト・エラーログ:openssl make testエラーが発生しましたか?

../test/recipes/05-test_md2.t .............. skipped: md2 is not supported by this OpenSSL build 
../test/recipes/05-test_rc5.t .............. skipped: rc5 is not supported by this OpenSSL build 
../test/recipes/30-test_afalg.t ............ skipped: test_afalg not supported for this build 
../test/recipes/40-test_rehash.t ........... Dubious, test returned 1 (wstat 256, 0x100) 
Failed 1/5 subtests 
     (less 1 skipped subtest: 3 okay) 
../test/recipes/90-test_heartbeat.t ........ skipped: heartbeats is not supported by this OpenSSL build 
Test Summary Report 
------------------- 
../test/recipes/40-test_rehash.t   (Wstat: 256 Tests: 5 Failed: 1) 
    Failed test: 4 
    Non-zero exit status: 1 
Files=95, Tests=547, 53 wallclock secs (0.31 usr 0.10 sys + 40.48 cusr 1.90 csys = 42.79 CPU) 
Result: FAIL 
make[1]: *** [_tests] Error 1 
make[1]: Leaving directory `/root/openssl-1.1.0f' 
make: *** [tests] Error 2 

答えて

0
../test/recipes/40-test_rehash.t ........... Dubious, test returned 1 (wstat 256, 0x100) 

は、私はどちらか(1)あなたはセルフテストを実行する場合は、このは、OpenSSL 1.0.2の下で起こると信じて1/5のサブテスト

を失敗しました。ルートとして。 (2)あなたはrootとして自己テストを実行できません。私はそれが前のものだと思う(1)。あなたはこれを無視することができます。

ライブラリをビルドし、セルフテストを通常のユーザーとして実行する必要があります。インストールするときは、sudoを使用してください。

関連する問題