Advertisement
Guest User

Tastebin - Tkabber Plugin

a guest
Feb 18th, 2014
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. Warning: tclOOStubInit.c may be out of date.
  2. Developers may want to run "make genstubs" to regenerate.
  3. This warning can be safely ignored, do not report as a bug!
  4. LD_LIBRARY_PATH=`pwd`: TCLLIBPATH="/home/emiliano/src/fossil/tcl/unix/pkgs" TCL_LIBRARY="/home/emiliano/src/fossil/tcl/library" ./tcltest /home/emiliano/src/fossil/tcl/tests/all.tcl -file obj.test
  5. Tests running in interp: /storage/progs/src/fossil/tcl/unix/tcltest
  6. Tests located in: /storage/progs/src/fossil/tcl/tests
  7. Tests running in: /storage/progs/src/fossil/tcl/unix
  8. Temporary files stored in /storage/progs/src/fossil/tcl/unix
  9. Test files run in separate interpreters
  10. Running tests that match: *
  11. Skipping test files that match: l.*.test
  12. Only running test files that match: obj.test
  13. Tests began at Tue Feb 18 17:52:25 ART 2014
  14. obj.test
  15.  
  16.  
  17. ==== obj-33.1 integer overflow on input FAILED
  18. ==== Contents of test case:
  19.  
  20. set x 0x8000; append x 0000
  21. list [string is integer $x] [expr { wide($x) }]
  22.  
  23. ---- Result was:
  24. 0 2147483648
  25. ---- Result should have been (exact matching):
  26. 1 2147483648
  27. ==== obj-33.1 FAILED
  28.  
  29.  
  30.  
  31. ==== obj-33.2 integer overflow on input FAILED
  32. ==== Contents of test case:
  33.  
  34. set x 0xffff; append x ffff
  35. list [string is integer $x] [expr { wide($x) }]
  36.  
  37. ---- Result was:
  38. 0 4294967295
  39. ---- Result should have been (exact matching):
  40. 1 4294967295
  41. ==== obj-33.2 FAILED
  42.  
  43.  
  44.  
  45. ==== obj-33.5 integer overflow on input FAILED
  46. ==== Contents of test case:
  47.  
  48. set x -0x8000; append x 0001
  49. list [string is integer $x] [expr { wide($x) }]
  50.  
  51. ---- Result was:
  52. 0 -2147483649
  53. ---- Result should have been (exact matching):
  54. 1 -2147483649
  55. ==== obj-33.5 FAILED
  56.  
  57.  
  58.  
  59. ==== obj-33.6 integer overflow on input FAILED
  60. ==== Contents of test case:
  61.  
  62. set x -0xffff; append x ffff
  63. list [string is integer $x] [expr { wide($x) }]
  64.  
  65. ---- Result was:
  66. 0 -4294967295
  67. ---- Result should have been (exact matching):
  68. 1 -4294967295
  69. ==== obj-33.6 FAILED
  70.  
  71.  
  72. Tests ended at Tue Feb 18 17:52:26 ART 2014
  73. all.tcl: Total 90 Passed 86 Skipped 0 Failed 4
  74. Sourced 1 Test Files.
  75. Files with failing tests: obj.test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement