1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

Remove shebang line from test libraries.

This commit is contained in:
Steven Schubiger 2008-11-12 21:18:27 +01:00
parent 3c1725e7a1
commit 124f1050af
5 changed files with 10 additions and 8 deletions

View File

@ -1,3 +1,9 @@
2008-11-12 Steven Schubiger <stsc@members.fsf.org>
* FTPServer.pm, FTPTest.pm, HTTPServer.pm, HTTPTest.pm:
Remove the magic interpreter line, because it cannot be
used fully. Substitute -w with use warnings.
2008-11-11 Micah Cowan <micah@cowan.name>
* HTTPServer.pm (handle_auth): Allow testing of

View File

@ -1,11 +1,10 @@
#!/usr/bin/perl -w
# Part of this code was borrowed from Richard Jones's Net::FTPServer
# http://www.annexia.org/freeware/netftpserver
package FTPServer;
use strict;
use warnings;
use Cwd;
use Socket;

View File

@ -1,8 +1,7 @@
#!/usr/bin/perl -w
package FTPTest;
use strict;
use warnings;
use FTPServer;
use WgetTest;

View File

@ -1,8 +1,7 @@
#!/usr/bin/perl -w
package HTTPServer;
use strict;
use warnings;
use HTTP::Daemon;
use HTTP::Status;

View File

@ -1,8 +1,7 @@
#!/usr/bin/perl -w
package HTTPTest;
use strict;
use warnings;
use HTTPServer;
use WgetTest;