OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [start/] [insight/] [tcl/] [tests/] [cmdIL.test] - Diff between revs 579 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 579 Rev 1765
# This file contains a collection of tests for the procedures in the
# This file contains a collection of tests for the procedures in the
# file tclCmdIL.c.  Sourcing this file into Tcl runs the tests and
# file tclCmdIL.c.  Sourcing this file into Tcl runs the tests and
# generates output for errors.  No output means no errors were found.
# generates output for errors.  No output means no errors were found.
#
#
# Copyright (c) 1997 Sun Microsystems, Inc.
# Copyright (c) 1997 Sun Microsystems, Inc.
# Copyright (c) 1998 by Scriptics Corporation.
# Copyright (c) 1998 by Scriptics Corporation.
#
#
# See the file "license.terms" for information on usage and redistribution
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
#
# RCS: @(#) $Id: cmdIL.test,v 1.1.1.1 2002-01-16 10:25:35 markom Exp $
# RCS: @(#) $Id: cmdIL.test,v 1.1.1.1 2002-01-16 10:25:35 markom Exp $
if {[string compare test [info procs test]] == 1} then {source defs}
if {[string compare test [info procs test]] == 1} then {source defs}
test cmdIL-1.1 {Tcl_LsortObjCmd procedure} {
test cmdIL-1.1 {Tcl_LsortObjCmd procedure} {
    list [catch {lsort} msg] $msg
    list [catch {lsort} msg] $msg
} {1 {wrong # args: should be "lsort ?options? list"}}
} {1 {wrong # args: should be "lsort ?options? list"}}
test cmdIL-1.2 {Tcl_LsortObjCmd procedure} {
test cmdIL-1.2 {Tcl_LsortObjCmd procedure} {
    list [catch {lsort -foo {1 3 2 5}} msg] $msg
    list [catch {lsort -foo {1 3 2 5}} msg] $msg
} {1 {bad option "-foo": must be -ascii, -command, -decreasing, -dictionary, -increasing, -index, -integer, or -real}}
} {1 {bad option "-foo": must be -ascii, -command, -decreasing, -dictionary, -increasing, -index, -integer, or -real}}
test cmdIL-1.3 {Tcl_LsortObjCmd procedure, default options} {
test cmdIL-1.3 {Tcl_LsortObjCmd procedure, default options} {
    lsort {d e c b a \{ d35 d300}
    lsort {d e c b a \{ d35 d300}
} {a b c d d300 d35 e \{}
} {a b c d d300 d35 e \{}
test cmdIL-1.4 {Tcl_LsortObjCmd procedure, -ascii option} {
test cmdIL-1.4 {Tcl_LsortObjCmd procedure, -ascii option} {
    lsort -integer -ascii {d e c b a d35 d300}
    lsort -integer -ascii {d e c b a d35 d300}
} {a b c d d300 d35 e}
} {a b c d d300 d35 e}
test cmdIL-1.5 {Tcl_LsortObjCmd procedure, -command option} {
test cmdIL-1.5 {Tcl_LsortObjCmd procedure, -command option} {
    list [catch {lsort -command {1 3 2 5}} msg] $msg
    list [catch {lsort -command {1 3 2 5}} msg] $msg
} {1 {"-command" option must be followed by comparison command}}
} {1 {"-command" option must be followed by comparison command}}
test cmdIL-1.6 {Tcl_LsortObjCmd procedure, -command option} {
test cmdIL-1.6 {Tcl_LsortObjCmd procedure, -command option} {
    proc cmp {a b} {
    proc cmp {a b} {
        expr {[string match x* $b] - [string match x* $a]}
        expr {[string match x* $b] - [string match x* $a]}
    }
    }
    lsort -command cmp {x1 abc x2 def x3 x4}
    lsort -command cmp {x1 abc x2 def x3 x4}
} {x1 x2 x3 x4 abc def}
} {x1 x2 x3 x4 abc def}
test cmdIL-1.7 {Tcl_LsortObjCmd procedure, -decreasing option} {
test cmdIL-1.7 {Tcl_LsortObjCmd procedure, -decreasing option} {
    lsort -decreasing {d e c b a d35 d300}
    lsort -decreasing {d e c b a d35 d300}
} {e d35 d300 d c b a}
} {e d35 d300 d c b a}
test cmdIL-1.8 {Tcl_LsortObjCmd procedure, -dictionary option} {
test cmdIL-1.8 {Tcl_LsortObjCmd procedure, -dictionary option} {
    lsort -dictionary {d e c b a d35 d300}
    lsort -dictionary {d e c b a d35 d300}
} {a b c d d35 d300 e}
} {a b c d d35 d300 e}
test cmdIL-1.9 {Tcl_LsortObjCmd procedure, -dictionary option} {
test cmdIL-1.9 {Tcl_LsortObjCmd procedure, -dictionary option} {
    lsort -dictionary {1k 0k 10k}
    lsort -dictionary {1k 0k 10k}
} {0k 1k 10k}
} {0k 1k 10k}
test cmdIL-1.10 {Tcl_LsortObjCmd procedure, -increasing option} {
test cmdIL-1.10 {Tcl_LsortObjCmd procedure, -increasing option} {
    lsort -decreasing -increasing {d e c b a d35 d300}
    lsort -decreasing -increasing {d e c b a d35 d300}
} {a b c d d300 d35 e}
} {a b c d d300 d35 e}
test cmdIL-1.11 {Tcl_LsortObjCmd procedure, -index option} {
test cmdIL-1.11 {Tcl_LsortObjCmd procedure, -index option} {
    list [catch {lsort -index {1 3 2 5}} msg] $msg
    list [catch {lsort -index {1 3 2 5}} msg] $msg
} {1 {"-index" option must be followed by list index}}
} {1 {"-index" option must be followed by list index}}
test cmdIL-1.12 {Tcl_LsortObjCmd procedure, -index option} {
test cmdIL-1.12 {Tcl_LsortObjCmd procedure, -index option} {
    list [catch {lsort -index foo {1 3 2 5}} msg] $msg
    list [catch {lsort -index foo {1 3 2 5}} msg] $msg
} {1 {bad index "foo": must be integer or "end"}}
} {1 {bad index "foo": must be integer or "end"}}
test cmdIL-1.13 {Tcl_LsortObjCmd procedure, -index option} {
test cmdIL-1.13 {Tcl_LsortObjCmd procedure, -index option} {
    lsort -index end -integer {{2 25} {10 20 50 100} {3 16 42} 1}
    lsort -index end -integer {{2 25} {10 20 50 100} {3 16 42} 1}
} {1 {2 25} {3 16 42} {10 20 50 100}}
} {1 {2 25} {3 16 42} {10 20 50 100}}
test cmdIL-1.14 {Tcl_LsortObjCmd procedure, -index option} {
test cmdIL-1.14 {Tcl_LsortObjCmd procedure, -index option} {
    lsort -index 1 -integer {{1 25 100} {3 16 42} {10 20 50}}
    lsort -index 1 -integer {{1 25 100} {3 16 42} {10 20 50}}
} {{3 16 42} {10 20 50} {1 25 100}}
} {{3 16 42} {10 20 50} {1 25 100}}
test cmdIL-1.15 {Tcl_LsortObjCmd procedure, -integer option} {
test cmdIL-1.15 {Tcl_LsortObjCmd procedure, -integer option} {
    lsort -integer {24 6 300 18}
    lsort -integer {24 6 300 18}
} {6 18 24 300}
} {6 18 24 300}
test cmdIL-1.16 {Tcl_LsortObjCmd procedure, -integer option} {
test cmdIL-1.16 {Tcl_LsortObjCmd procedure, -integer option} {
    list [catch {lsort -integer {1 3 2.4}} msg] $msg
    list [catch {lsort -integer {1 3 2.4}} msg] $msg
} {1 {expected integer but got "2.4"}}
} {1 {expected integer but got "2.4"}}
test cmdIL-1.17 {Tcl_LsortObjCmd procedure, -real option} {
test cmdIL-1.17 {Tcl_LsortObjCmd procedure, -real option} {
    lsort -real {24.2 6e3 150e-1}
    lsort -real {24.2 6e3 150e-1}
} {150e-1 24.2 6e3}
} {150e-1 24.2 6e3}
test cmdIL-1.18 {Tcl_LsortObjCmd procedure, bogus list} {
test cmdIL-1.18 {Tcl_LsortObjCmd procedure, bogus list} {
    list [catch {lsort "1 2 3 \{ 4"} msg] $msg
    list [catch {lsort "1 2 3 \{ 4"} msg] $msg
} {1 {unmatched open brace in list}}
} {1 {unmatched open brace in list}}
test cmdIL-1.19 {Tcl_LsortObjCmd procedure, empty list} {
test cmdIL-1.19 {Tcl_LsortObjCmd procedure, empty list} {
    lsort {}
    lsort {}
} {}
} {}
# Can't think of any good tests for the MergeSort and MergeLists
# Can't think of any good tests for the MergeSort and MergeLists
# procedures, except a bunch of random lists to sort.
# procedures, except a bunch of random lists to sort.
test cmdIL-2.1 {MergeSort and MergeLists procedures} {
test cmdIL-2.1 {MergeSort and MergeLists procedures} {
    set result {}
    set result {}
    set r 1435753299
    set r 1435753299
    proc rand {} {
    proc rand {} {
        global r
        global r
        set r [expr (16807 * $r) % (0x7fffffff)]
        set r [expr (16807 * $r) % (0x7fffffff)]
    }
    }
    for {set i 0} {$i < 150} {incr i} {
    for {set i 0} {$i < 150} {incr i} {
        set x {}
        set x {}
        for {set j 0} {$j < $i} {incr j} {
        for {set j 0} {$j < $i} {incr j} {
            lappend x [expr [rand] & 0xfff]
            lappend x [expr [rand] & 0xfff]
        }
        }
        set y [lsort -integer $x]
        set y [lsort -integer $x]
        set old -1
        set old -1
        foreach el $y {
        foreach el $y {
            if {$el < $old} {
            if {$el < $old} {
                append result "list {$x} sorted to {$y}, element $el out of order\n"
                append result "list {$x} sorted to {$y}, element $el out of order\n"
                break
                break
            }
            }
            set old $el
            set old $el
        }
        }
    }
    }
    set result
    set result
} {}
} {}
test cmdIL-3.1 {SortCompare procedure, skip comparisons after error} {
test cmdIL-3.1 {SortCompare procedure, skip comparisons after error} {
    set x 0
    set x 0
    proc cmp {a b} {
    proc cmp {a b} {
        global x
        global x
        incr x
        incr x
        error "error #$x"
        error "error #$x"
    }
    }
    list [catch {lsort -integer -command cmp {48 6 28 190 16 2 3 6 1}} msg] \
    list [catch {lsort -integer -command cmp {48 6 28 190 16 2 3 6 1}} msg] \
            $msg $x
            $msg $x
} {1 {error #1} 1}
} {1 {error #1} 1}
test cmdIL-3.2 {SortCompare procedure, -index option} {
test cmdIL-3.2 {SortCompare procedure, -index option} {
    list [catch {lsort -integer -index 2 "\\\{ {30 40 50}"} msg] $msg
    list [catch {lsort -integer -index 2 "\\\{ {30 40 50}"} msg] $msg
} {1 {unmatched open brace in list}}
} {1 {unmatched open brace in list}}
test cmdIL-3.3 {SortCompare procedure, -index option} {
test cmdIL-3.3 {SortCompare procedure, -index option} {
    list [catch {lsort -integer -index 2 {{20 10} {15 30 40}}} msg] $msg
    list [catch {lsort -integer -index 2 {{20 10} {15 30 40}}} msg] $msg
} {1 {element 2 missing from sublist "20 10"}}
} {1 {element 2 missing from sublist "20 10"}}
test cmdIL-3.4 {SortCompare procedure, -index option} {
test cmdIL-3.4 {SortCompare procedure, -index option} {
    list [catch {lsort -integer -index 2 "{a b c} \\\{"} msg] $msg
    list [catch {lsort -integer -index 2 "{a b c} \\\{"} msg] $msg
} {1 {unmatched open brace in list}}
} {1 {unmatched open brace in list}}
test cmdIL-3.5 {SortCompare procedure, -index option} {
test cmdIL-3.5 {SortCompare procedure, -index option} {
    list [catch {lsort -integer -index 2 {{20 10 13} {15}}} msg] $msg
    list [catch {lsort -integer -index 2 {{20 10 13} {15}}} msg] $msg
} {1 {element 2 missing from sublist "15"}}
} {1 {element 2 missing from sublist "15"}}
test cmdIL-3.6 {SortCompare procedure, -index option} {
test cmdIL-3.6 {SortCompare procedure, -index option} {
    lsort -integer -index 2 {{1 15 30} {2 5 25} {3 25 20}}
    lsort -integer -index 2 {{1 15 30} {2 5 25} {3 25 20}}
} {{3 25 20} {2 5 25} {1 15 30}}
} {{3 25 20} {2 5 25} {1 15 30}}
test cmdIL-3.7 {SortCompare procedure, -ascii option} {
test cmdIL-3.7 {SortCompare procedure, -ascii option} {
    lsort -ascii {d e c b a d35 d300 100 20}
    lsort -ascii {d e c b a d35 d300 100 20}
} {100 20 a b c d d300 d35 e}
} {100 20 a b c d d300 d35 e}
test cmdIL-3.8 {SortCompare procedure, -dictionary option} {
test cmdIL-3.8 {SortCompare procedure, -dictionary option} {
    lsort -dictionary {d e c b a d35 d300 100 20}
    lsort -dictionary {d e c b a d35 d300 100 20}
} {20 100 a b c d d35 d300 e}
} {20 100 a b c d d35 d300 e}
test cmdIL-3.9 {SortCompare procedure, -integer option} {
test cmdIL-3.9 {SortCompare procedure, -integer option} {
    list [catch {lsort -integer {x 3}} msg] $msg
    list [catch {lsort -integer {x 3}} msg] $msg
} {1 {expected integer but got "x"}}
} {1 {expected integer but got "x"}}
test cmdIL-3.10 {SortCompare procedure, -integer option} {
test cmdIL-3.10 {SortCompare procedure, -integer option} {
    list [catch {lsort -integer {3 q}} msg] $msg
    list [catch {lsort -integer {3 q}} msg] $msg
} {1 {expected integer but got "q"}}
} {1 {expected integer but got "q"}}
test cmdIL-3.11 {SortCompare procedure, -integer option} {
test cmdIL-3.11 {SortCompare procedure, -integer option} {
    lsort -integer {35 21 0x20 30 023 100 8}
    lsort -integer {35 21 0x20 30 023 100 8}
} {8 023 21 30 0x20 35 100}
} {8 023 21 30 0x20 35 100}
test cmdIL-3.12 {SortCompare procedure, -real option} {
test cmdIL-3.12 {SortCompare procedure, -real option} {
    list [catch {lsort -real {6...4 3}} msg] $msg
    list [catch {lsort -real {6...4 3}} msg] $msg
} {1 {expected floating-point number but got "6...4"}}
} {1 {expected floating-point number but got "6...4"}}
test cmdIL-3.13 {SortCompare procedure, -real option} {
test cmdIL-3.13 {SortCompare procedure, -real option} {
    list [catch {lsort -real {3 1x7}} msg] $msg
    list [catch {lsort -real {3 1x7}} msg] $msg
} {1 {expected floating-point number but got "1x7"}}
} {1 {expected floating-point number but got "1x7"}}
test cmdIL-3.14 {SortCompare procedure, -real option} {
test cmdIL-3.14 {SortCompare procedure, -real option} {
    lsort -real {24 2.5e01 16.7 85e-1 10.004}
    lsort -real {24 2.5e01 16.7 85e-1 10.004}
} {85e-1 10.004 16.7 24 2.5e01}
} {85e-1 10.004 16.7 24 2.5e01}
test cmdIL-3.15 {SortCompare procedure, -command option} {
test cmdIL-3.15 {SortCompare procedure, -command option} {
    proc cmp {a b} {
    proc cmp {a b} {
        error "comparison error"
        error "comparison error"
    }
    }
    list [catch {lsort -command cmp {48 6}} msg] $msg $errorInfo
    list [catch {lsort -command cmp {48 6}} msg] $msg $errorInfo
} {1 {comparison error} {comparison error
} {1 {comparison error} {comparison error
    while executing
    while executing
"error "comparison error""
"error "comparison error""
    (procedure "cmp" line 2)
    (procedure "cmp" line 2)
    invoked from within
    invoked from within
"cmp 48 6"
"cmp 48 6"
    (-compare command)
    (-compare command)
    invoked from within
    invoked from within
"lsort -command cmp {48 6}"}}
"lsort -command cmp {48 6}"}}
test cmdIL-3.16 {SortCompare procedure, -command option, long command} {
test cmdIL-3.16 {SortCompare procedure, -command option, long command} {
    proc cmp {dummy a b} {
    proc cmp {dummy a b} {
        string compare $a $b
        string compare $a $b
    }
    }
    lsort -command {cmp {this argument is very very long in order to make the dstring overflow its statically allocated space}} {{this first element is also long in order to help expand the dstring} {the second element, last but not least, is quite long also, in order to make absolutely sure that space is allocated dynamically for the dstring}}
    lsort -command {cmp {this argument is very very long in order to make the dstring overflow its statically allocated space}} {{this first element is also long in order to help expand the dstring} {the second element, last but not least, is quite long also, in order to make absolutely sure that space is allocated dynamically for the dstring}}
} {{the second element, last but not least, is quite long also, in order to make absolutely sure that space is allocated dynamically for the dstring} {this first element is also long in order to help expand the dstring}}
} {{the second element, last but not least, is quite long also, in order to make absolutely sure that space is allocated dynamically for the dstring} {this first element is also long in order to help expand the dstring}}
test cmdIL-3.17 {SortCompare procedure, -command option, non-integer result} {
test cmdIL-3.17 {SortCompare procedure, -command option, non-integer result} {
    proc cmp {a b} {
    proc cmp {a b} {
        return foow
        return foow
    }
    }
    list [catch {lsort -command cmp {48 6}} msg] $msg
    list [catch {lsort -command cmp {48 6}} msg] $msg
} {1 {-compare command returned non-numeric result}}
} {1 {-compare command returned non-numeric result}}
test cmdIL-3.18 {SortCompare procedure, -command option} {
test cmdIL-3.18 {SortCompare procedure, -command option} {
    proc cmp {a b} {
    proc cmp {a b} {
        expr $b - $a
        expr $b - $a
    }
    }
    lsort -command cmp {48 6 18 22 21 35 36}
    lsort -command cmp {48 6 18 22 21 35 36}
} {48 36 35 22 21 18 6}
} {48 36 35 22 21 18 6}
test cmdIL-3.19 {SortCompare procedure, -decreasing option} {
test cmdIL-3.19 {SortCompare procedure, -decreasing option} {
    lsort -decreasing -integer {35 21 0x20 30 023 100 8}
    lsort -decreasing -integer {35 21 0x20 30 023 100 8}
} {100 35 0x20 30 21 023 8}
} {100 35 0x20 30 21 023 8}
test cmdIL-4.1 {DictionaryCompare procedure, numerics, leading zeros} {
test cmdIL-4.1 {DictionaryCompare procedure, numerics, leading zeros} {
    lsort -dictionary {a003b a03b}
    lsort -dictionary {a003b a03b}
} {a03b a003b}
} {a03b a003b}
test cmdIL-4.2 {DictionaryCompare procedure, numerics, leading zeros} {
test cmdIL-4.2 {DictionaryCompare procedure, numerics, leading zeros} {
    lsort -dictionary {a3b a03b}
    lsort -dictionary {a3b a03b}
} {a3b a03b}
} {a3b a03b}
test cmdIL-4.3 {DictionaryCompare procedure, numerics, leading zeros} {
test cmdIL-4.3 {DictionaryCompare procedure, numerics, leading zeros} {
    lsort -dictionary {a3b A03b}
    lsort -dictionary {a3b A03b}
} {A03b a3b}
} {A03b a3b}
test cmdIL-4.4 {DictionaryCompare procedure, numerics, leading zeros} {
test cmdIL-4.4 {DictionaryCompare procedure, numerics, leading zeros} {
    lsort -dictionary {a3b a03B}
    lsort -dictionary {a3b a03B}
} {a3b a03B}
} {a3b a03B}
test cmdIL-4.5 {DictionaryCompare procedure, numerics, leading zeros} {
test cmdIL-4.5 {DictionaryCompare procedure, numerics, leading zeros} {
    lsort -dictionary {00000 000}
    lsort -dictionary {00000 000}
} {000 00000}
} {000 00000}
test cmdIL-4.6 {DictionaryCompare procedure, numerics, different lengths} {
test cmdIL-4.6 {DictionaryCompare procedure, numerics, different lengths} {
    lsort -dictionary {a321b a03210b}
    lsort -dictionary {a321b a03210b}
} {a321b a03210b}
} {a321b a03210b}
test cmdIL-4.7 {DictionaryCompare procedure, numerics, different lengths} {
test cmdIL-4.7 {DictionaryCompare procedure, numerics, different lengths} {
    lsort -dictionary {a03210b a321b}
    lsort -dictionary {a03210b a321b}
} {a321b a03210b}
} {a321b a03210b}
test cmdIL-4.8 {DictionaryCompare procedure, numerics} {
test cmdIL-4.8 {DictionaryCompare procedure, numerics} {
    lsort -dictionary {48 6a 18b 22a 21aa 35 36}
    lsort -dictionary {48 6a 18b 22a 21aa 35 36}
} {6a 18b 21aa 22a 35 36 48}
} {6a 18b 21aa 22a 35 36 48}
test cmdIL-4.9 {DictionaryCompare procedure, numerics} {
test cmdIL-4.9 {DictionaryCompare procedure, numerics} {
    lsort -dictionary {a123x a123b}
    lsort -dictionary {a123x a123b}
} {a123b a123x}
} {a123b a123x}
test cmdIL-4.10 {DictionaryCompare procedure, numerics} {
test cmdIL-4.10 {DictionaryCompare procedure, numerics} {
    lsort -dictionary {a123b a123x}
    lsort -dictionary {a123b a123x}
} {a123b a123x}
} {a123b a123x}
test cmdIL-4.11 {DictionaryCompare procedure, numerics} {
test cmdIL-4.11 {DictionaryCompare procedure, numerics} {
    lsort -dictionary {a1b aab}
    lsort -dictionary {a1b aab}
} {a1b aab}
} {a1b aab}
test cmdIL-4.12 {DictionaryCompare procedure, numerics} {
test cmdIL-4.12 {DictionaryCompare procedure, numerics} {
    lsort -dictionary {a1b a!b}
    lsort -dictionary {a1b a!b}
} {a!b a1b}
} {a!b a1b}
test cmdIL-4.13 {DictionaryCompare procedure, numerics} {
test cmdIL-4.13 {DictionaryCompare procedure, numerics} {
    lsort -dictionary {a1b2c a1b1c}
    lsort -dictionary {a1b2c a1b1c}
} {a1b1c a1b2c}
} {a1b1c a1b2c}
test cmdIL-4.14 {DictionaryCompare procedure, numerics} {
test cmdIL-4.14 {DictionaryCompare procedure, numerics} {
    lsort -dictionary {a1b2c a1b3c}
    lsort -dictionary {a1b2c a1b3c}
} {a1b2c a1b3c}
} {a1b2c a1b3c}
test cmdIL-4.15 {DictionaryCompare procedure, long numbers} {
test cmdIL-4.15 {DictionaryCompare procedure, long numbers} {
    lsort -dictionary {a7654884321988762b a7654884321988761b}
    lsort -dictionary {a7654884321988762b a7654884321988761b}
} {a7654884321988761b a7654884321988762b}
} {a7654884321988761b a7654884321988762b}
test cmdIL-4.16 {DictionaryCompare procedure, long numbers} {
test cmdIL-4.16 {DictionaryCompare procedure, long numbers} {
    lsort -dictionary {a8765488432198876b a7654884321988761b}
    lsort -dictionary {a8765488432198876b a7654884321988761b}
} {a7654884321988761b a8765488432198876b}
} {a7654884321988761b a8765488432198876b}
test cmdIL-4.17 {DictionaryCompare procedure, case} {
test cmdIL-4.17 {DictionaryCompare procedure, case} {
    lsort -dictionary {aBCd abcc}
    lsort -dictionary {aBCd abcc}
} {abcc aBCd}
} {abcc aBCd}
test cmdIL-4.18 {DictionaryCompare procedure, case} {
test cmdIL-4.18 {DictionaryCompare procedure, case} {
    lsort -dictionary {aBCd abce}
    lsort -dictionary {aBCd abce}
} {aBCd abce}
} {aBCd abce}
test cmdIL-4.19 {DictionaryCompare procedure, case} {
test cmdIL-4.19 {DictionaryCompare procedure, case} {
    lsort -dictionary {abcd ABcc}
    lsort -dictionary {abcd ABcc}
} {ABcc abcd}
} {ABcc abcd}
test cmdIL-4.20 {DictionaryCompare procedure, case} {
test cmdIL-4.20 {DictionaryCompare procedure, case} {
    lsort -dictionary {abcd ABce}
    lsort -dictionary {abcd ABce}
} {abcd ABce}
} {abcd ABce}
test cmdIL-4.21 {DictionaryCompare procedure, case} {
test cmdIL-4.21 {DictionaryCompare procedure, case} {
    lsort -dictionary {abCD ABcd}
    lsort -dictionary {abCD ABcd}
} {ABcd abCD}
} {ABcd abCD}
test cmdIL-4.22 {DictionaryCompare procedure, case} {
test cmdIL-4.22 {DictionaryCompare procedure, case} {
    lsort -dictionary {ABcd aBCd}
    lsort -dictionary {ABcd aBCd}
} {ABcd aBCd}
} {ABcd aBCd}
test cmdIL-4.23 {DictionaryCompare procedure, case} {
test cmdIL-4.23 {DictionaryCompare procedure, case} {
    lsort -dictionary {ABcd AbCd}
    lsort -dictionary {ABcd AbCd}
} {ABcd AbCd}
} {ABcd AbCd}
test cmdIL-4.24 {DefaultCompare procedure, signed characters} {
test cmdIL-4.24 {DefaultCompare procedure, signed characters} {
    set l [lsort [list "abc\200" "abc"]]
    set l [lsort [list "abc\200" "abc"]]
    set viewlist {}
    set viewlist {}
    foreach s $l {
    foreach s $l {
        set viewelem ""
        set viewelem ""
        set len [string length $s]
        set len [string length $s]
        for {set i 0} {$i < $len} {incr i} {
        for {set i 0} {$i < $len} {incr i} {
            set c [string index $s $i]
            set c [string index $s $i]
            scan $c %c d
            scan $c %c d
            if {$d > 0 && $d < 128} {
            if {$d > 0 && $d < 128} {
                append viewelem $c
                append viewelem $c
            } else {
            } else {
                append viewelem "\\[format %03o $d]"
                append viewelem "\\[format %03o $d]"
            }
            }
        }
        }
        lappend viewlist $viewelem
        lappend viewlist $viewelem
    }
    }
    set viewlist
    set viewlist
} [list "abc" "abc\\200"]
} [list "abc" "abc\\200"]
test cmdIL-4.25 {DictionaryCompare procedure, signed characters} {
test cmdIL-4.25 {DictionaryCompare procedure, signed characters} {
    set l [lsort -dictionary [list "abc\200" "abc"]]
    set l [lsort -dictionary [list "abc\200" "abc"]]
    set viewlist {}
    set viewlist {}
    foreach s $l {
    foreach s $l {
        set viewelem ""
        set viewelem ""
        set len [string length $s]
        set len [string length $s]
        for {set i 0} {$i < $len} {incr i} {
        for {set i 0} {$i < $len} {incr i} {
            set c [string index $s $i]
            set c [string index $s $i]
            scan $c %c d
            scan $c %c d
            if {$d > 0 && $d < 128} {
            if {$d > 0 && $d < 128} {
                append viewelem $c
                append viewelem $c
            } else {
            } else {
                append viewelem "\\[format %03o $d]"
                append viewelem "\\[format %03o $d]"
            }
            }
        }
        }
        lappend viewlist $viewelem
        lappend viewlist $viewelem
    }
    }
    set viewlist
    set viewlist
} [list "abc" "abc\\200"]
} [list "abc" "abc\\200"]
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.