Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I pass java.library.path to TestNG?

I need to do the equivalent of

java -Djava.library.path=/blah
share|improve this question

3 Answers

If you are bootstrapping a web server, you can write it in the run configuration script in the web server.

For instance in JBoss look at this answer.

share|improve this answer
No - I am trying to run a test which has some JNI dependencies. – Fakrudeen Aug 2 '11 at 9:14

This is a system property that's interpreted by the JVM, why would TestNG care about it?

share|improve this answer
Because testng starts the JVM, not I. – Fakrudeen Nov 11 '11 at 14:55
Er... no. TestNG is running in the same JVM you are running your tests, it doesn't launch any JVM. Are you referring to the TestNG Eclipse plug-in, by any chance? – Cedric Beust Nov 11 '11 at 22:49

You use the jvmarg ant tag like

<jvmarg value="-Djava.library.path=${basedir}\lib" />

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.