Re: [openssl-users] error (openssl-1.1.0g)

2018-02-15 Thread Sakuma, Koshiro
Hi, Matt,

Thank you so much for your comments!!  Yes, I took option 2.  I changed
owner for binary directory and run with normal user account.  Also, I did
"sudo make install" .
It worked finally!!!

Cheers!

2018-02-15 20:21 GMT+09:00 Matt Caswell <m...@openssl.org>:

>
>
> On 15/02/18 08:52, Sakuma, Koshiro wrote:
> > Hi, Rich,
> >
> > Here is the result.  However, I tried to do the "config" with normal
> > user and I got an error like you don't have permission.
> > You have any ideas??
> >
> > #   Failed test 'Testing that we aren't running as a privileged user,
> > such as root'
>
> So this confirms that the issue is due to you running the test as root.
>
> You have a few options:
>
> 1) Ignore this test failure. If this is the only test failure showing up
> then it is harmless. It is a known issue in the test code (not in
> OpenSSL itself)
>
> 2) Don't build as root. The build process doesn't need any special
> privileges, other than obviously it needs to be able to read the source
> files and write out object, executables, libraries etc. If you are
> building as a user other than root make sure all the source files and
> directories are owned by that user (or at least that the user has the
> appropriate privs for read/write). You will probably still need to be
> root to do the final "make install".
>
> 3) If you must build as root, and don't want to just ignore the failure
> then you can apply the patch available here:
> https://github.com/openssl/openssl/pull/5184/files
>
> I'd go with option 1.
>
> Matt
>
>
>
> > #   at ../test/recipes/40-test_rehash.t line 49.
> > ok 5 # skip It's pointless to run the next test as root
> > # Looks like you failed 1 test of 5.
> > Dubious, test returned 1 (wstat 256, 0x100)
> > Failed 1/5 subtests
> > (less 1 skipped subtest: 3 okay)
> >
> > Test Summary Report
> > ---
> > ../test/recipes/40-test_rehash.t (Wstat: 256 Tests: 5 Failed: 1)
> >   Failed test:  4
> >   Non-zero exit status: 1
> > Files=1, Tests=5,  0 wallclock secs ( 0.02 usr  0.00 sys +  0.05 cusr
> > 0.03 csys =  0.10 CPU)
> > Result: FAIL
> > make[1]: *** [_tests] Error 1
> > make[1]: Leaving directory `/usr/local/src/openssl-1.1.0g'
> >
> >
> >
> > 2018-02-15 7:28 GMT+09:00 Salz, Rich <rs...@akamai.com
> > <mailto:rs...@akamai.com>>:
> >
> > For the failing test, try this
> >
> > make TESTS=test_rehash V=1 tests
> >
> > __ __
> >
> >
> >
> >
> --
> openssl-users mailing list
> To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users
>
-- 
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users


Re: [openssl-users] error (openssl-1.1.0g)

2018-02-15 Thread Sakuma, Koshiro
Hi, Uri,

BTW, I finished the installation without any errors (make install) even if
I got an error for make test phase.
Also, I can use openssl command and produce .pem keys.

I am not sure if this is the correct way...

Regards,

2018-02-15 7:25 GMT+09:00 Blumenthal, Uri - 0553 - MITLL <u...@ll.mit.edu>:

> Thanks for your feedback.
>
>
>
> You’re welcome.
>
>
>
> You think it might be something like "BUG"??
>
>
>
> Probably yes – but the question is whether it’s with the new OpenSSL test
> infrastructure, or something with how one of my machines is configured. I
> do not know.
>
>
>
> Anyway, you are also waiting for the answers right?
>
>
>
> Yes I certainly am.
>
>
>
> 2018-02-15 6:57 GMT+09:00 Blumenthal, Uri - 0553 - MITLL <u...@ll.mit.edu>:
>
> Funny. I have the same problem with the current master on one of my two
> MacOS High Sierra machines. Surprisingly, the other machine builds and runs
> the current master just fine. Configuration and build scripts are automated
> and exactly the same between the two.
>
>
>
> The “bad” machine runs a bunch of compliance-related software, but it did
> not seem to interfere with the previous OpenSSL code drops.
>
> --
>
> Regards,
>
> Uri Blumenthal
>
> *From: *openssl-users <openssl-users-boun...@openssl.org> on behalf of
> "Sakuma, Koshiro" <bravo.echo@gmail.com>
> *Reply-To: *"openssl-users@openssl.org" <openssl-users@openssl.org>
> *Date: *Wednesday, February 14, 2018 at 16:33
> *To: *"openssl-users@openssl.org" <openssl-users@openssl.org>
> *Subject: *[openssl-users] error (openssl-1.1.0g)
>
>
>
> Hi, Team,
>
>
>
> I'm trying to install openssl-1.1.0g on my CentOS7, but I've gotten error
> during do the "make test" phase.  The error I've gotten is as follows.
>
>
>
> 
> -
>
> ./test/recipes/40-test_rehash.t ... Dubious, test returned 1
> (wstat 256, 0x100)
>
> Failed 1/5 subtests
>
>
>
> 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=554, 34 wallclock secs ( 0.32 usr  0.09 sys + 25.56 cusr
> 9.26 csys = 35.23 CPU)
>
> Result: FAIL
>
> make[1]: *** [_tests] Error 1
>
> make[1]: Leaving directory `/usr/local/src/openssl-1.1.0g
>
> make[1]:***[tests] error 2
>
> 
> -
>
>
>
> The command I tried to do was like "config --prefix=/usr/local/openssl
> shared zlib OR config shared OR config.
>
>
>
> The OS version is CentOS Linux release 7.4.1708 (Core).
>
>
>
> I am not sure if I can ignore this error and move forward to do "make".
>
>
>
> Thank you so much for your support.
>
>
>
> Regards,
>
>
>
>
> --
> openssl-users mailing list
> To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users
>
>
>
-- 
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users


Re: [openssl-users] error (openssl-1.1.0g)

2018-02-15 Thread Sakuma, Koshiro
Hi,

Please let me know how I can compile the source with normal user account
instead of root?  The error I got was like "You don't have permission"
after executing "config".

Regards,

2018-02-15 17:52 GMT+09:00 Sakuma, Koshiro <bravo.echo@gmail.com>:

> Hi, Rich,
>
> Here is the result.  However, I tried to do the "config" with normal user
> and I got an error like you don't have permission.
> You have any ideas??
>
> #   Failed test 'Testing that we aren't running as a privileged user, such
> as root'
> #   at ../test/recipes/40-test_rehash.t line 49.
> ok 5 # skip It's pointless to run the next test as root
> # Looks like you failed 1 test of 5.
> Dubious, test returned 1 (wstat 256, 0x100)
> Failed 1/5 subtests
> (less 1 skipped subtest: 3 okay)
>
> Test Summary Report
> ---
> ../test/recipes/40-test_rehash.t (Wstat: 256 Tests: 5 Failed: 1)
>   Failed test:  4
>   Non-zero exit status: 1
> Files=1, Tests=5,  0 wallclock secs ( 0.02 usr  0.00 sys +  0.05 cusr
> 0.03 csys =  0.10 CPU)
> Result: FAIL
> make[1]: *** [_tests] Error 1
> make[1]: Leaving directory `/usr/local/src/openssl-1.1.0g'
>
>
>
> 2018-02-15 7:28 GMT+09:00 Salz, Rich <rs...@akamai.com>:
>
>> For the failing test, try this
>>
>> make TESTS=test_rehash V=1 tests
>>
>>
>>
>
>
-- 
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users


Re: [openssl-users] error (openssl-1.1.0g)

2018-02-15 Thread Sakuma, Koshiro
Hi, Rich,

Here is the result.  However, I tried to do the "config" with normal user
and I got an error like you don't have permission.
You have any ideas??

#   Failed test 'Testing that we aren't running as a privileged user, such
as root'
#   at ../test/recipes/40-test_rehash.t line 49.
ok 5 # skip It's pointless to run the next test as root
# Looks like you failed 1 test of 5.
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/5 subtests
(less 1 skipped subtest: 3 okay)

Test Summary Report
---
../test/recipes/40-test_rehash.t (Wstat: 256 Tests: 5 Failed: 1)
  Failed test:  4
  Non-zero exit status: 1
Files=1, Tests=5,  0 wallclock secs ( 0.02 usr  0.00 sys +  0.05 cusr  0.03
csys =  0.10 CPU)
Result: FAIL
make[1]: *** [_tests] Error 1
make[1]: Leaving directory `/usr/local/src/openssl-1.1.0g'



2018-02-15 7:28 GMT+09:00 Salz, Rich :

> For the failing test, try this
>
> make TESTS=test_rehash V=1 tests
>
>
>
-- 
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users


Re: [openssl-users] error (openssl-1.1.0g)

2018-02-14 Thread Sakuma, Koshiro
Hi, Matt,

Yes, I did with root user, but it was failed like "access denied" when I
tried to do with normal user account.
Also, I didn't get any error messages like "root" user or something in the
log file.

Regards


2018-02-15 9:44 GMT+09:00 Matt Caswell <m...@openssl.org>:

> Did you run "make test" as root by any chance? There is a known issue
> where this test fails if you run it as root (fixed in git by commit
> b15e62ecc).
>
> Matt
>
> On 14/02/18 21:33, Sakuma, Koshiro wrote:
> > Hi, Team,
> >
> > I'm trying to install openssl-1.1.0g on my CentOS7, but I've gotten
> > error during do the "make test" phase.  The error I've gotten is as
> follows.
> >
> > 
> -
> > ./test/recipes/40-test_rehash.t ... Dubious, test returned 1
> > (wstat 256, 0x100)
> > Failed 1/5 subtests
> >
> > 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=554, 34 wallclock secs ( 0.32 usr  0.09 sys + 25.56
> > cusr  9.26 csys = 35.23 CPU)
> > Result: FAIL
> > make[1]: *** [_tests] Error 1
> > make[1]: Leaving directory `/usr/local/src/openssl-1.1.0g
> > make[1]:***[tests] error 2
> > 
> -
> >
> > The command I tried to do was like "config --prefix=/usr/local/openssl
> > shared zlib OR config shared OR config.
> >
> > The OS version is CentOS Linux release 7.4.1708 (Core).
> >
> > I am not sure if I can ignore this error and move forward to do "make".
> >
> > Thank you so much for your support.
> >
> > Regards,
> >
> >
> >
> --
> openssl-users mailing list
> To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users
>
-- 
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users


Re: [openssl-users] error (openssl-1.1.0g)

2018-02-14 Thread Sakuma, Koshiro
Hi, Uri,

Thanks for your feedback.  You think it might be something like "BUG"??
Anyway, you are also waiting for the answers right?

Regards,

2018-02-15 6:57 GMT+09:00 Blumenthal, Uri - 0553 - MITLL <u...@ll.mit.edu>:

> Funny. I have the same problem with the current master on one of my two
> MacOS High Sierra machines. Surprisingly, the other machine builds and runs
> the current master just fine. Configuration and build scripts are automated
> and exactly the same between the two.
>
>
>
> The “bad” machine runs a bunch of compliance-related software, but it did
> not seem to interfere with the previous OpenSSL code drops.
>
> --
>
> Regards,
>
> Uri Blumenthal
>
> *From: *openssl-users <openssl-users-boun...@openssl.org> on behalf of
> "Sakuma, Koshiro" <bravo.echo@gmail.com>
> *Reply-To: *"openssl-users@openssl.org" <openssl-users@openssl.org>
> *Date: *Wednesday, February 14, 2018 at 16:33
> *To: *"openssl-users@openssl.org" <openssl-users@openssl.org>
> *Subject: *[openssl-users] error (openssl-1.1.0g)
>
>
>
> Hi, Team,
>
>
>
> I'm trying to install openssl-1.1.0g on my CentOS7, but I've gotten error
> during do the "make test" phase.  The error I've gotten is as follows.
>
>
>
> 
> -
>
> ./test/recipes/40-test_rehash.t ... Dubious, test returned 1
> (wstat 256, 0x100)
>
> Failed 1/5 subtests
>
>
>
> 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=554, 34 wallclock secs ( 0.32 usr  0.09 sys + 25.56 cusr
> 9.26 csys = 35.23 CPU)
>
> Result: FAIL
>
> make[1]: *** [_tests] Error 1
>
> make[1]: Leaving directory `/usr/local/src/openssl-1.1.0g
>
> make[1]:***[tests] error 2
>
> 
> -
>
>
>
> The command I tried to do was like "config --prefix=/usr/local/openssl
> shared zlib OR config shared OR config.
>
>
>
> The OS version is CentOS Linux release 7.4.1708 (Core).
>
>
>
> I am not sure if I can ignore this error and move forward to do "make".
>
>
>
> Thank you so much for your support.
>
>
>
> Regards,
>
>
>
> --
> openssl-users mailing list
> To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users
>
>
-- 
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users


[openssl-users] error (openssl-1.1.0g)

2018-02-14 Thread Sakuma, Koshiro
 Hi, Team,

I'm trying to install openssl-1.1.0g on my CentOS7, but I've gotten error
during do the "make test" phase.  The error I've gotten is as follows.


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

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=554, 34 wallclock secs ( 0.32 usr  0.09 sys + 25.56 cusr
9.26 csys = 35.23 CPU)
Result: FAIL
make[1]: *** [_tests] Error 1
make[1]: Leaving directory `/usr/local/src/openssl-1.1.0g
make[1]:***[tests] error 2

-

The command I tried to do was like "config --prefix=/usr/local/openssl
shared zlib OR config shared OR config.

The OS version is CentOS Linux release 7.4.1708 (Core).

I am not sure if I can ignore this error and move forward to do "make".

Thank you so much for your support.

Regards,
-- 
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users