os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/tokenize.test
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
# 2008 July 7
sl@0
     2
#
sl@0
     3
# The author disclaims copyright to this source code.  In place of
sl@0
     4
# a legal notice, here is a blessing:
sl@0
     5
#
sl@0
     6
#    May you do good and not evil.
sl@0
     7
#    May you find forgiveness for yourself and forgive others.
sl@0
     8
#    May you share freely, never taking more than you give.
sl@0
     9
#
sl@0
    10
#***********************************************************************
sl@0
    11
# This file implements regression tests for SQLite library.  The
sl@0
    12
# focus of this script testing the tokenizer
sl@0
    13
#
sl@0
    14
# $Id: tokenize.test,v 1.1 2008/07/08 00:06:51 drh Exp $
sl@0
    15
#
sl@0
    16
sl@0
    17
set testdir [file dirname $argv0]
sl@0
    18
source $testdir/tester.tcl
sl@0
    19
sl@0
    20
do_test tokenize-1.1 {
sl@0
    21
  catchsql {SELECT 1.0e+}
sl@0
    22
} {1 {unrecognized token: "1.0e"}}
sl@0
    23
do_test tokenize-1.2 {
sl@0
    24
  catchsql {SELECT 1.0E+}
sl@0
    25
} {1 {unrecognized token: "1.0E"}}
sl@0
    26
do_test tokenize-1.3 {
sl@0
    27
  catchsql {SELECT 1.0e-}
sl@0
    28
} {1 {unrecognized token: "1.0e"}}
sl@0
    29
do_test tokenize-1.4 {
sl@0
    30
  catchsql {SELECT 1.0E-}
sl@0
    31
} {1 {unrecognized token: "1.0E"}}
sl@0
    32
do_test tokenize-1.5 {
sl@0
    33
  catchsql {SELECT 1.0e+/}
sl@0
    34
} {1 {unrecognized token: "1.0e"}}
sl@0
    35
do_test tokenize-1.6 {
sl@0
    36
  catchsql {SELECT 1.0E+:}
sl@0
    37
} {1 {unrecognized token: "1.0E"}}
sl@0
    38
do_test tokenize-1.7 {
sl@0
    39
  catchsql {SELECT 1.0e-:}
sl@0
    40
} {1 {unrecognized token: "1.0e"}}
sl@0
    41
do_test tokenize-1.8 {
sl@0
    42
  catchsql {SELECT 1.0E-/}
sl@0
    43
} {1 {unrecognized token: "1.0E"}}
sl@0
    44
do_test tokenize-1.9 {
sl@0
    45
  catchsql {SELECT 1.0F+5}
sl@0
    46
} {1 {unrecognized token: "1.0F"}}
sl@0
    47
do_test tokenize-1.10 {
sl@0
    48
  catchsql {SELECT 1.0d-10}
sl@0
    49
} {1 {unrecognized token: "1.0d"}}
sl@0
    50
do_test tokenize-1.11 {
sl@0
    51
  catchsql {SELECT 1.0e,5}
sl@0
    52
} {1 {unrecognized token: "1.0e"}}
sl@0
    53
do_test tokenize-1.12 {
sl@0
    54
  catchsql {SELECT 1.0E.10}
sl@0
    55
} {1 {unrecognized token: "1.0E"}}
sl@0
    56
sl@0
    57
do_test tokenize-2.1 {
sl@0
    58
  catchsql {SELECT 1, 2 /*}
sl@0
    59
} {1 {near "*": syntax error}}
sl@0
    60
do_test tokenize-2.2 {
sl@0
    61
  catchsql {SELECT 1, 2 /* }
sl@0
    62
} {0 {1 2}}
sl@0
    63
sl@0
    64
sl@0
    65
finish_test