1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

removed shebang from tests

This commit is contained in:
Kenichi Ishigaki 2019-01-02 21:10:51 +09:00
parent 48740e8f30
commit 12ab284322
107 changed files with 0 additions and 202 deletions

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# Test that everything compiles, so the rest of the test suite can # Test that everything compiles, so the rest of the test suite can
# load modules without having to check if it worked. # load modules without having to check if it worked.

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# Tests basic login and pragma setting # Tests basic login and pragma setting
use strict; use strict;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# Tests simple table creation # Tests simple table creation
use strict; use strict;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# Test that two processes can write at once, assuming we commit timely. # Test that two processes can write at once, assuming we commit timely.
use strict; use strict;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use 5.00503; use 5.00503;
use strict; use strict;
BEGIN { BEGIN {

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# This is a test for correct handling of the "unicode" database # This is a test for correct handling of the "unicode" database
# handle parameter. # handle parameter.

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# This is a skeleton test. For writing new tests, take this file # This is a skeleton test. For writing new tests, take this file
# and modify/extend it. # and modify/extend it.

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# This is a simple insert/fetch test. # This is a simple insert/fetch test.
use strict; use strict;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# This is a test for correct handling of BLOBS; namely $dbh->quote # This is a test for correct handling of BLOBS; namely $dbh->quote
# is expected to work correctly. # is expected to work correctly.

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# This is a test for statement attributes being present appropriately. # This is a test for statement attributes being present appropriately.
use strict; use strict;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# This is a test for correctly handling NULL values. # This is a test for correctly handling NULL values.
use strict; use strict;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# This tests, whether the number of rows can be retrieved. # This tests, whether the number of rows can be retrieved.
use strict; use strict;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# Check whether 'ChopBlanks' works. # Check whether 'ChopBlanks' works.
use strict; use strict;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# This is testing the transaction support. # This is testing the transaction support.
use strict; use strict;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# This test works, but as far as I can tell this doesn't actually test # This test works, but as far as I can tell this doesn't actually test
# the thing that the test was originally meant to test. # the thing that the test was originally meant to test.

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# I've disabled warnings, so theoretically warnings shouldn't be printed # I've disabled warnings, so theoretically warnings shouldn't be printed
use strict; use strict;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# Tests path containing non-latine-1 characters # Tests path containing non-latine-1 characters
# currently fails on Windows # currently fails on Windows

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
use warnings; use warnings;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,4 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# Trigger locking error and test prepared statement is still valid afterwards # Trigger locking error and test prepared statement is still valid afterwards
use strict; use strict;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# Check data type assignment in bind_param is sticky # Check data type assignment in bind_param is sticky
use strict; use strict;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# This is a regression test for bug #15186: # This is a regression test for bug #15186:
# http://rt.cpan.org/Public/Bug/Display.html?id=15186 # http://rt.cpan.org/Public/Bug/Display.html?id=15186
# About re-using statements with prepare_cached(). # About re-using statements with prepare_cached().

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,4 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
use warnings; use warnings;
use DBI; use DBI;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# Tests that executing the same prepare_cached twice without a # Tests that executing the same prepare_cached twice without a
# finish in between does not prevent it being automatically cleaned # finish in between does not prevent it being automatically cleaned
# up and that it does not generate a warning. # up and that it does not generate a warning.

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# This is a simple insert/fetch test. # This is a simple insert/fetch test.
use strict; use strict;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl -w
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use warnings; use warnings;
use strict; use strict;
BEGIN { BEGIN {

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,4 +1,3 @@
#!/usr/bin/perl
# According to the sqlite doc, the SQL argument to sqlite3_prepare_v2 # According to the sqlite doc, the SQL argument to sqlite3_prepare_v2
# should be in utf8, but DBD::SQLite does not ensure this (even with # should be in utf8, but DBD::SQLite does not ensure this (even with
# sqlite_unicode => 1). Only bind values are properly converted. # sqlite_unicode => 1). Only bind values are properly converted.

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
# In a contentless FTS table, the columns are hidden from the schema, # In a contentless FTS table, the columns are hidden from the schema,
# and therefore SQLite has no information to infer column types, so # and therefore SQLite has no information to infer column types, so
# these are typed as SQLITE_NULL ... and this type conflicts with the # these are typed as SQLITE_NULL ... and this type conflicts with the

View file

@ -1,5 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,4 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

View file

@ -1,4 +1,3 @@
#!/usr/bin/perl
use strict; use strict;
BEGIN { BEGIN {
$| = 1; $| = 1;

Some files were not shown because too many files have changed in this diff Show more