mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
DBD-SQLite: made the debugger test non-interactive
This commit is contained in:
parent
6de5c908f7
commit
3441f644ff
1 changed files with 6 additions and 1 deletions
|
@ -25,7 +25,12 @@ open my $fh, '>', $file;
|
|||
print $fh <DATA>;
|
||||
close $fh;
|
||||
|
||||
ok !system("$^X -Mblib -d $file");
|
||||
if ($^O eq 'MSWin32') {
|
||||
ok !system(qq{set PERLDB_OPTS="NonStop"; $^X -Mblib -d $file});
|
||||
}
|
||||
else {
|
||||
ok !system(qq{PERLDB_OPTS="NonStop" $^X -Mblib -d $file});
|
||||
}
|
||||
|
||||
END {
|
||||
unlink $file if $file && -f $file;
|
||||
|
|
Loading…
Add table
Reference in a new issue