Author: marvin
Date: Wed Oct 3 18:59:25 2012
New Revision: 1393675
URL: http://svn.apache.org/viewvc?rev=1393675&view=rev
Log:
Fix path to make Charmonizer tests work.
Modified:
lucy/trunk/clownfish/runtime/perl/lib/Clownfish/Test.pm
Modified: lucy/trunk/clownfish/runtime/perl/lib/Clownfish/Test.pm
URL:
http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/lib/Clownfish/Test.pm?rev=1393675&r1=1393674&r2=1393675&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/lib/Clownfish/Test.pm (original)
+++ lucy/trunk/clownfish/runtime/perl/lib/Clownfish/Test.pm Wed Oct 3 18:59:25
2012
@@ -29,7 +29,7 @@ sub run_tests {
$name =~ s/_([a-z])/\u$1/g;
my $path = catfile( 'charmonizer', "Test$name$Config{_exe}" );
if ( !-e $path ) {
- $path = catfile( updir(), $path );
+ $path = catfile( updir(), updir(), updir(), $path );
}
exec $path;
}