diff options
author | Karl Williamson <khw@cpan.org> | 2016-12-06 21:34:32 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-12-06 22:59:17 -0700 |
commit | 88d057adfcdfd2053ec0c2f917724a34f52b436f (patch) | |
tree | 59c6f6c4e3e112b2d21e5bf2f32d5d5eda7e3648 /t/test.pl | |
parent | 2db24202937a2afb49936f6d94ba13f35a277fba (diff) | |
download | perl-88d057adfcdfd2053ec0c2f917724a34f52b436f.tar.gz |
t/test.pl: Clarify syntax for tests in t/lib/*
Diffstat (limited to 't/test.pl')
-rw-r--r-- | t/test.pl | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1078,8 +1078,9 @@ sub fresh_perl_like { # Each program is source code to run followed by an "EXPECT" line, followed # by the expected output. # -# The code to run may begin with a command line switch such as -w or -0777 -# (alphanumerics only), and may contain (note the '# ' on each): +# The first line of the code to run may be a command line switch such as -wE +# or -0777 (alphanumerics only; only one cluster, beginning with a minus is +# allowed). Later lines may contain (note the '# ' on each): # # TODO reason for todo # # SKIP reason for skip # # SKIP ?code to test if this should be skipped |