Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
cdc6e3a1
Commit
cdc6e3a1
authored
Feb 10, 2003
by
zach%zachlipton.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Partial fix for bug 192513 (processmail cleanup). Patch fixes test files
to disregard processmail since it no longer exists (it was special-cased before). r=dave, a=dave
parent
4a8e3d64
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
002goodperl.t
t/002goodperl.t
+2
-5
Files.pm
t/Support/Files.pm
+1
-1
No files found.
t/002goodperl.t
View file @
cdc6e3a1
...
...
@@ -52,11 +52,8 @@ foreach my $file (@testitems) {
ok
(
1
,
"$file does not have a shebang"
);
}
else
{
my
$flags
;
if
(
$file
eq
"processmail"
)
{
# special case processmail, which is tainted checked
$flags
=
"wT"
;
}
elsif
(
!
defined
$ext
||
$ext
eq
"pl"
)
{
# standalone programs (eg syncshadowdb) aren't taint checked yet
if
(
!
defined
$ext
||
$ext
eq
"pl"
)
{
# standalone programs aren't taint checked yet
$flags
=
"w"
;
}
elsif
(
$ext
eq
"pm"
)
{
ok
(
0
,
"$file is a module, but has a shebang"
);
...
...
t/Support/Files.pm
View file @
cdc6e3a1
...
...
@@ -26,7 +26,7 @@ package Support::Files;
# exclude_deps is a hash of arrays listing the files to be excluded
# if a module is not available
#
@additional_files
=
(
'syncshadowdb'
,
'processmail'
);
@additional_files
=
();
%
exclude_deps
=
(
'XML::Parser'
=>
[
'importxml.pl'
],
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment