const char *t;
SV * const tmpstr = newSV_type(SVt_PVMG);
- t = strchr(s, '\n');
+ t = (const char *)memchr(s, '\n', send - s);
if (t)
t++;
else
use strict;
-plan( tests => 10 );
+plan( tests => 19 );
my @before = grep { /eval/ } keys %::;
is (@before, 0, "No evals");
-for my $sep (' ') {
+my %seen;
+my $name = 'foo';
+
+for my $sep (' ', "\0") {
$^P = 0xA;
- my $prog = "sub foo {
+ my $prog = "sub $name {
'Perl${sep}Rules'
};
1;
# Is there a more efficient way to write this?
my @expect_lines = (undef, map ({"$_\n"} split "\n", $prog), "\n", ';');
- my @keys = grep { /eval/ } keys %::;
+ my @keys = grep {!$seen{$_}} grep { /eval/ } keys %::;
- is (@keys, 1, "1 eval");
+ is (@keys, 1, "1 new eval");
my @got_lines = @{$::{$keys[0]}};
for (0..$#expect_lines) {
is ($got_lines[$_], $expect_lines[$_], "Line $_ is correct");
}
+ $seen{$keys[0]}++;
+ $name++;
}