From 329ce2643b2d7f1ef8807517187f5ed0042eb807 Mon Sep 17 00:00:00 2001 From: coke Date: Tue, 13 Oct 2009 09:08:57 -0400 Subject: [PATCH] Just pull from the known repo where the wiki lives. --- tools/tcl_test.pl | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tools/tcl_test.pl b/tools/tcl_test.pl index c3dc2ce..d79c79e 100755 --- a/tools/tcl_test.pl +++ b/tools/tcl_test.pl @@ -50,11 +50,9 @@ =head1 SYNOPSIS my $specfile = 'SpecTestStatus.wiki'; warn "Getting a copy of $specfile\n"; -my $svn_info = `svn info .` || `git svn info README`; -$svn_info =~ /Repository Root:\s+(.*)\n/; -my $repo = $1; -my $specstatus = $repo . "/wiki/$specfile"; -`svn export $specstatus tools/$specfile`; +my $repo_url = "http://partcl.googlecode.com/svn/wiki/$specfile"; + +`svn export $repo_url tools/$specfile`; # Normally, skip tests marked with @SKIP # If invoked with --skip, ONLY run those tests, so we can