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:
parent
3c1725e7a1
commit
124f1050af
@ -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>
|
2008-11-11 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
* HTTPServer.pm (handle_auth): Allow testing of
|
* HTTPServer.pm (handle_auth): Allow testing of
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
#!/usr/bin/perl -w
|
|
||||||
|
|
||||||
# Part of this code was borrowed from Richard Jones's Net::FTPServer
|
# Part of this code was borrowed from Richard Jones's Net::FTPServer
|
||||||
# http://www.annexia.org/freeware/netftpserver
|
# http://www.annexia.org/freeware/netftpserver
|
||||||
|
|
||||||
package FTPServer;
|
package FTPServer;
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
use Cwd;
|
use Cwd;
|
||||||
use Socket;
|
use Socket;
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
#!/usr/bin/perl -w
|
|
||||||
|
|
||||||
package FTPTest;
|
package FTPTest;
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
use FTPServer;
|
use FTPServer;
|
||||||
use WgetTest;
|
use WgetTest;
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
#!/usr/bin/perl -w
|
|
||||||
|
|
||||||
package HTTPServer;
|
package HTTPServer;
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
use HTTP::Daemon;
|
use HTTP::Daemon;
|
||||||
use HTTP::Status;
|
use HTTP::Status;
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
#!/usr/bin/perl -w
|
|
||||||
|
|
||||||
package HTTPTest;
|
package HTTPTest;
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
use HTTPServer;
|
use HTTPServer;
|
||||||
use WgetTest;
|
use WgetTest;
|
||||||
|
Loading…
Reference in New Issue
Block a user