| OLD | NEW |
| 1 # 2009 April 17 | 1 # 2009 April 17 |
| 2 # | 2 # |
| 3 # The author disclaims copyright to this source code. In place of | 3 # The author disclaims copyright to this source code. In place of |
| 4 # a legal notice, here is a blessing: | 4 # a legal notice, here is a blessing: |
| 5 # | 5 # |
| 6 # May you do good and not evil. | 6 # May you do good and not evil. |
| 7 # May you find forgiveness for yourself and forgive others. | 7 # May you find forgiveness for yourself and forgive others. |
| 8 # May you share freely, never taking more than you give. | 8 # May you share freely, never taking more than you give. |
| 9 # | 9 # |
| 10 #*********************************************************************** | 10 #*********************************************************************** |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 unset -nocomplain i L | 50 unset -nocomplain i L |
| 51 for {set i 4} {$i < 10} {incr i} { | 51 for {set i 4} {$i < 10} {incr i} { |
| 52 for {set j 0} {$j < 5000} {incr j} { | 52 for {set j 0} {$j < 5000} {incr j} { |
| 53 lappend L [expr int(rand()*1000000000)] | 53 lappend L [expr int(rand()*1000000000)] |
| 54 } | 54 } |
| 55 do_keyset_test rowhash-2.$i $L | 55 do_keyset_test rowhash-2.$i $L |
| 56 } | 56 } |
| 57 } | 57 } |
| 58 | 58 |
| 59 finish_test | 59 finish_test |
| OLD | NEW |