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

I have matlab_xunit, which is a folder with a bunch of functions used for writing unit tests. It's stored in ../external/matlab_xunit. I want to call runtests which is part of this package. Here is the sample code:

addpath(genpath('../external/matlab_xunit'))
runtests subdirectory

subdirectory is a sub-directory of the current directory. What runtests does is that it will change the current directory to subdirectory, and then it will find the tests in that folder and run the tests. The problem is, as I found out, as soon as the current directory gets changed, matlab_xunit is no longer on the path. Thus, all functions runtests has to call inside become invalid - they just 'vanish'.

Anyway around this shortcoming of addpath()?

Thanks much!

share|improve this question

1 Answer

up vote 2 down vote accepted

Use a full path. This will probably work:

addpath(genpath(fullfile(pwd,'../external/matlab_xunit')))
share|improve this answer
Perfect. THanks. – user18115 Mar 9 '12 at 4:37
Actually, the better way to do it is to combine with fileparts, so that there's no ".." in the path name at all. This way there will never be any conflict down the road: addpath(genpath(fullfile(fileparts(pwd),'/external/matlab_xunit'))) – user18115 Mar 15 '12 at 20:31

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.