Posted to tcl by hypnotoad at Thu Jan 04 02:41:31 GMT 2018view raw

  1. basra:unix seandeelywoods$ make test
  2. DYLD_LIBRARY_PATH=`pwd`: TCLLIBPATH="/Users/seandeelywoods/build/dev-tcl/tcl/unix/pkgs" TCL_LIBRARY="/Users/seandeelywoods/build/dev-tcl/tcl/library" ./tcltest /Users/seandeelywoods/build/dev-tcl/tcl/tests/all.tcl
  3. Tests running in interp: /Users/seandeelywoods/build/dev-tcl/tcl/unix/tcltest
  4. Tests located in: /Users/seandeelywoods/build/dev-tcl/tcl/tests
  5. Tests running in: /Users/seandeelywoods/build/dev-tcl/tcl/unix
  6. Temporary files stored in /Users/seandeelywoods/build/dev-tcl/tcl/unix
  7. Test files run in separate interpreters
  8. Running tests that match: *
  9. Skipping test files that match: l.*.test
  10. Only running test files that match: *.test
  11. Tests began at Wed Jan 03 21:33:52 EST 2018
  12. aaa_exit.test
  13. append.test
  14. appendComp.test
  15. apply.test
  16. assemble.test
  17. assocd.test
  18. async.test
  19. autoMkindex.test
  20. basic.test
  21. binary.test
  22. case.test
  23. chan.test
  24. chanio.test
  25. clock.test
  26. cmdAH.test
  27. cmdIL.test
  28. cmdInfo.test
  29. cmdMZ.test
  30. compExpr-old.test
  31. compExpr.test
  32. compile.test
  33. concat.test
  34. config.test
  35. coroutine.test
  36. dcall.test
  37. dict.test
  38. dstring.test
  39. encoding.test
  40. env.test
  41. error.test
  42. eval.test
  43. event.test
  44. exec.test
  45. execute.test
  46. expr-old.test
  47. expr.test
  48. fCmd.test
  49. fileName.test
  50. fileSystem.test
  51. for-old.test
  52. for.test
  53. foreach.test
  54. format.test
  55. get.test
  56. history.test
  57. http.test
  58. http11.test
  59. httpold.test
  60. if-old.test
  61. if.test
  62. incr-old.test
  63. incr.test
  64. indexObj.test
  65. info.test
  66. init.test
  67. interp.test
  68. io.test
  69. ioCmd.test
  70. ioTrans.test
  71. iogt.test
  72. join.test
  73. lindex.test
  74. link.test
  75. linsert.test
  76. list.test
  77. listObj.test
  78. llength.test
  79. lmap.test
  80. load.test
  81. lrange.test
  82. lrepeat.test
  83. lreplace.test
  84. lsearch.test
  85. lset.test
  86. lsetComp.test
  87. macOSXFCmd.test
  88.  
  89.  
  90. ==== macOSXFCmd-2.7 MacOSXSetFileAttribute - rsrclength FAILED
  91. ==== Contents of test case:
  92.  
  93. catch {file delete -force -- foo.test}
  94. close [open foo.test w]
  95. catch {
  96. set f [open foo.test/..namedfork/rsrc w]
  97. fconfigure $f -translation lf -eofchar {}
  98. puts -nonewline $f "foo"
  99. close $f
  100. }
  101. list [catch {file attributes foo.test -rsrclength} msg] $msg [catch {file attributes foo.test -rsrclength 0} msg] $msg [catch {file attributes foo.test -rsrclength} msg] $msg [file delete -force -- foo.test]
  102.  
  103. ---- Result was:
  104. 0 3 0 {} 0 3 {}
  105. ---- Result should have been (exact matching):
  106. 0 3 0 {} 0 0 {}
  107. ==== macOSXFCmd-2.7 FAILED
  108.  
  109.  
  110.  
  111. ==== macOSXFCmd-4.1 TclMacOSXMatchType FAILED
  112. ==== Contents of test case:
  113.  
  114. file mkdir globtest
  115. cd globtest
  116. foreach f {bar baz foo inv inw .nv reg} {
  117. catch {file delete -force -- $f.test}
  118. close [open $f.test w]
  119. }
  120. catch {file delete -force -- dir.test}
  121. file mkdir dir.test
  122. catch {
  123. file attributes bar.test -type FOOT
  124. file attributes baz.test -creator FOOC -type FOOT
  125. file attributes foo.test -creator FOOC
  126. file attributes inv.test -hidden 1
  127. file attributes inw.test -hidden 1 -type FOOT
  128. file attributes dir.test -hidden 1
  129. }
  130. set res [list [catch {glob *.test} msg] $msg [catch {glob -types FOOT *.test} msg] $msg [catch {glob -types {{macintosh type FOOT}} *.test} msg] $msg [catch {glob -types FOOTT *.test} msg] $msg [catch {glob -types {{macintosh type FOOTT}} *.test} msg] $msg [catch {glob -types {{macintosh type {}}} *.test} msg] $msg [catch {glob -types {{macintosh creator FOOC}} *.test} msg] $msg [catch {glob -types {{macintosh creator FOOC} {macintosh type FOOT}} *.test} msg] $msg [catch {glob -types hidden *.test} msg] $msg [catch {glob -types {hidden FOOT} *.test} msg] $msg ]
  131. cd ..
  132. file delete -force globtest
  133. set res
  134.  
  135. ---- Result was:
  136. 0 {foo.test bar.test reg.test baz.test dir.test inv.test inw.test} 0 {bar.test baz.test inw.test} 0 {bar.test baz.test inw.test} 1 {bad argument to "-types": FOOTT} 1 {expected Macintosh OS type but got "FOOTT": } 0 {foo.test reg.test inv.test} 0 {foo.test baz.test} 0 baz.test 0 {.nv.test dir.test inv.test inw.test} 0 inw.test
  137. ---- Result should have been (exact matching):
  138. 0 {bar.test baz.test dir.test foo.test inv.test inw.test reg.test} 0 {bar.test baz.test inw.test} 0 {bar.test baz.test inw.test} 1 {bad argument to "-types": FOOTT} 1 {expected Macintosh OS type but got "FOOTT": } 0 {foo.test inv.test reg.test} 0 {baz.test foo.test} 0 baz.test 0 {.nv.test dir.test inv.test inw.test} 0 inw.test
  139. ==== macOSXFCmd-4.1 FAILED
  140.  
  141. macOSXLoad.test
  142. main.test
  143. mathop.test
  144. misc.test
  145. msgcat.test
  146. namespace-old.test
  147. namespace.test
  148. notify.test
  149. nre.test
  150. obj.test
  151. oo.test
  152. ooNext2.test
  153. opt.test
  154. package.test
  155. parse.test
  156. parseExpr.test
  157. parseOld.test
  158. pid.test
  159. pkgMkIndex.test
  160. platform.test
  161. proc-old.test
  162. proc.test
  163. pwd.test
  164. reg.test
  165. regexp.test
  166. regexpComp.test
  167. registry.test
  168. rename.test
  169. resolver.test
  170. result.test
  171. safe.test
  172. scan.test
  173. security.test
  174. set-old.test
  175. set.test
  176. socket.test
  177. source.test
  178. split.test
  179. stack.test
  180. string.test
  181. stringComp.test
  182. stringObj.test
  183. subst.test
  184. switch.test
  185. tailcall.test
  186. tcltest.test
  187. thread.test
  188. timer.test
  189. tm.test
  190. trace.test
  191. unixFCmd.test
  192. unixFile.test
  193. unixForkEvent.test
  194. unixInit.test
  195. unixNotfy.test
  196. unknown.test
  197. unload.test
  198. uplevel.test
  199. upvar.test
  200. utf.test
  201. util.test
  202. var.test
  203. while-old.test
  204. while.test
  205. winConsole.test
  206. winDde.test
  207. winFCmd.test
  208. winFile.test
  209. winNotify.test
  210. winPipe.test
  211. winTime.test
  212. zlib.test
  213.  
  214. Tests ended at Wed Jan 03 21:36:59 EST 2018
  215. all.tcl: Total 31480 Passed 30194 Skipped 1284 Failed 2
  216. Sourced 148 Test Files.
  217. Files with failing tests: macOSXFCmd.test
  218. Number of tests skipped for each constraint:
  219. 9 !ieeeFloatingPoint
  220. 3 asyncPipeChan
  221. 76 bigEndian
  222. 5 bug-3057639
  223. 49 dde
  224. 4 dontCopyLinks
  225. 63 emptyTest
  226. 1 execMknod
  227. 7 fullutf
  228. 2 hasIsoLocale
  229. 1 knownBadTest
  230. 39 knownBug
  231. 2 largefileSupport
  232. 100 localeRegexp
  233. 48 longIs32bit
  234. 79 memory
  235. 45 nonPortable
  236. 1 notDarwin9
  237. 5 notNetworkFilesystem
  238. 1 obsolete
  239. 3 singleTestInterp
  240. 1 testexprparser && !ieeeFloatingPoint
  241. 1 testwinclock
  242. 21 testwordend
  243. 189 thread
  244. 2 unthreaded
  245. 2 wideBiggerThanInt
  246. 504 win
  247. 4 winVista
  248. 6 xdev
  249.