From ccaf82a249d988a9192034b5afa33b754aefd379 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Fri, 4 Sep 2009 21:08:05 +0000 Subject: Bug 224588: Unify ($^O =~ /MSWin/) checks (always use ON_WINDOWS) Patch by Max Kanat-Alexander r=LpSolit, a=LpSolit --- t/008filter.t | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 't/008filter.t') diff --git a/t/008filter.t b/t/008filter.t index ec9e21f51..5a9e48bac 100644 --- a/t/008filter.t +++ b/t/008filter.t @@ -30,10 +30,11 @@ # Sample exploit code: '>"> use strict; -use lib 't'; +use lib qw(. lib t); use vars qw(%safe); +use Bugzilla::Constants; use Support::Templates; use File::Spec; use Test::More tests => $Support::Templates::num_actual_files; @@ -45,7 +46,7 @@ my $topdir = cwd; $/ = undef; foreach my $path (@Support::Templates::include_paths) { - $path =~ s|\\|/|g if $^O eq 'MSWin32'; # convert \ to / in path if on windows + $path =~ s|\\|/|g if ON_WINDOWS; # convert \ to / in path if on windows $path =~ m|template/([^/]+)/([^/]+)|; my $lang = $1; my $flavor = $2; @@ -66,7 +67,7 @@ foreach my $path (@Support::Templates::include_paths) { } else { do "filterexceptions.pl"; - if ($^O eq 'MSWin32') { + if (ON_WINDOWS) { # filterexceptions.pl uses / separated paths, while # find_actual_files returns \ separated ones on Windows. # Here, we convert the filter exception hash to use \. -- cgit v1.2.3-24-g4f1b