From: Vincent Pit Date: Thu, 10 Sep 2009 21:14:19 +0000 (+0200) Subject: Fix paths in threaded regexp tests X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5931e39587b08515604ceabf127c4b1970903463;p=p5sagit%2Fp5-mst-13.2.git Fix paths in threaded regexp tests --- diff --git a/t/re/pat_thr.t b/t/re/pat_thr.t index 3228b33..159be92 100644 --- a/t/re/pat_thr.t +++ b/t/re/pat_thr.t @@ -4,4 +4,4 @@ chdir 't' if -d 't'; @INC = ('../lib', '.'); require 'thread_it.pl'; -thread_it(qw(op pat.t)); +thread_it(qw(re pat.t)); diff --git a/t/re/reg_email_thr.t b/t/re/reg_email_thr.t index 8eafc05..2432126 100644 --- a/t/re/reg_email_thr.t +++ b/t/re/reg_email_thr.t @@ -4,4 +4,4 @@ chdir 't' if -d 't'; @INC = ('../lib', '.'); require 'thread_it.pl'; -thread_it(qw(op reg_email.t)); +thread_it(qw(re reg_email.t)); diff --git a/t/re/regexp_unicode_prop_thr.t b/t/re/regexp_unicode_prop_thr.t index ae40d43..607ad94 100644 --- a/t/re/regexp_unicode_prop_thr.t +++ b/t/re/regexp_unicode_prop_thr.t @@ -4,4 +4,4 @@ chdir 't' if -d 't'; @INC = ('../lib', '.'); require 'thread_it.pl'; -thread_it(qw(op regexp_unicode_prop.t)); +thread_it(qw(re regexp_unicode_prop.t)); diff --git a/t/re/substr_thr.t b/t/re/substr_thr.t index babb48d..295c617 100644 --- a/t/re/substr_thr.t +++ b/t/re/substr_thr.t @@ -4,4 +4,4 @@ chdir 't' if -d 't'; @INC = ('../lib', '.'); require 'thread_it.pl'; -thread_it(qw(op substr.t)); +thread_it(qw(re substr.t));