From 151160c1103166810daddf1e9cc7135cb6ccc321 Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Mon, 2 Apr 2018 19:20:11 +0300 Subject: Tests: Perl script with syntax error. --- test/perl/syntax_error/psgi.pl | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test/perl/syntax_error/psgi.pl (limited to 'test/perl/syntax_error') diff --git a/test/perl/syntax_error/psgi.pl b/test/perl/syntax_error/psgi.pl new file mode 100644 index 00000000..2b6dbbea --- /dev/null +++ b/test/perl/syntax_error/psgi.pl @@ -0,0 +1,5 @@ +my $app = sub { + my ($environ) = @_ + + return ['200', [], []]; +}; -- cgit