From 0f6a9542d4c2a72b49e7de8db6a889863087a163 Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Wed, 23 Nov 2011 13:41:52 -0800 Subject: [PATCH] Move substr tests under t/op Commit a4499558 moved them under t/re along with the subst tests, but these are unrelated to regexps. --- MANIFEST | 4 ++-- t/{re => op}/substr.t | 0 t/{re => op}/substr_thr.t | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename t/{re => op}/substr.t (100%) rename t/{re => op}/substr_thr.t (100%) diff --git a/MANIFEST b/MANIFEST index d0f9e86..945b7f1 100644 --- a/MANIFEST +++ b/MANIFEST @@ -5252,6 +5252,8 @@ t/op/stat.t See if stat works t/op/study.t See if study works t/op/studytied.t See if study works with tied scalars t/op/sub_lval.t See if lvalue subroutines work +t/op/substr.t See if substr works +t/op/substr_thr.t See if substr works in another thread t/op/sub.t See if subroutines work t/op/svleak.t See if stuff leaks SVs t/op/switch.t See if switches (given/when) work @@ -5349,8 +5351,6 @@ t/re/reg_posixcc.t See if posix character classes behave consistently t/re/re_tests Regular expressions for regexp.t t/re/rxcode.t See if /(?{ code })/ works t/re/subst_amp.t See if $&-related substitution works -t/re/substr.t See if substr works -t/re/substr_thr.t See if substr works in another thread t/re/subst.t See if substitution works t/re/substT.t See if substitution works with -T t/re/subst_wamp.t See if substitution works with $& present diff --git a/t/re/substr.t b/t/op/substr.t similarity index 100% rename from t/re/substr.t rename to t/op/substr.t diff --git a/t/re/substr_thr.t b/t/op/substr_thr.t similarity index 100% rename from t/re/substr_thr.t rename to t/op/substr_thr.t -- 1.8.3.1