From ad3803ff6ff439568eaa7763c008d6c24c8b0ed8 Mon Sep 17 00:00:00 2001 From: James Turnbull Date: Tue, 27 May 2008 14:10:40 +1000 Subject: Fixes for install.rb running of tests that fixes #1267 --- install.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install.rb') diff --git a/install.rb b/install.rb index 207f74a0b..66494a244 100755 --- a/install.rb +++ b/install.rb @@ -78,7 +78,7 @@ rdoc = glob(%w{bin/* sbin/* lib/**/*.rb README README-library CHANGELOG TODO In ri = glob(%w(bin/*.rb sbin/* lib/**/*.rb)).reject { |e| e=~ /\.(bat|cmd)$/ } man = glob(%w{man/man8/*}) libs = glob(%w{lib/**/*.rb lib/**/*.py}) -tests = glob(%w{tests/**/*.rb}) +tests = glob(%w{test/**/*.rb}) def do_bins(bins, target, strip = 's?bin/') bins.each do |bf| @@ -383,7 +383,7 @@ EOS check_prereqs prepare_installation -run_tests(tests) if InstallOptions.tests +#run_tests(tests) if InstallOptions.tests #build_rdoc(rdoc) if InstallOptions.rdoc #build_ri(ri) if InstallOptions.ri #build_man(bins) if InstallOptions.man -- cgit