docdurdee has asked for the wisdom of the Perl Monks concerning the following question:
Any ideas? Thanks! UPDATE: I also tried unsetting the environment variables from within the test that works when I run it directly:BEGIN { $ENV{ORACLE_HOME}="somepathto/oracle"; $ENV{DYLD_LIBRARY_PATH}="somepathto/oracle/lib"; }
The test still works!!!! I'm only able to make the test crash during the "make test" phase. This is curious...BEGIN{ `export DYLD_LIBRARY_PATH=""`; `export ORACLE_HOME=""`; `export LD_LIBRARY_PATH=""`; $ENV{DYLD_LIBRARY_PATH}=''; $ENV{ORACLE_HOME}='' $ENV{LD_LIBRARY_PATH}=''; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Testing a library that accesses an Oracle Database
by kcott (Archbishop) on Sep 22, 2016 at 05:53 UTC | |
by docdurdee (Scribe) on Sep 22, 2016 at 14:54 UTC | |
by kcott (Archbishop) on Sep 22, 2016 at 18:49 UTC | |
by docdurdee (Scribe) on Sep 23, 2016 at 20:03 UTC | |
by docdurdee (Scribe) on Sep 23, 2016 at 18:01 UTC | |
|
Re: Testing a library that accesses an Oracle Database
by Random_Walk (Prior) on Sep 22, 2016 at 04:29 UTC | |
|
Re: Testing a library that accesses an Oracle Database
by Corion (Patriarch) on Sep 22, 2016 at 19:21 UTC | |
by docdurdee (Scribe) on Sep 23, 2016 at 18:16 UTC |