Posted to tcl by hypnotoad at Mon Oct 01 16:45:56 GMT 2018view raw

  1. basra:unix seandeelywoods$ fossil status
  2. repository: /Users/seandeelywoods/odie/download/tcl.fos
  3. local-root: /Users/seandeelywoods/build/odie/tcl/
  4. config-db: /Users/seandeelywoods/.fossil
  5. checkout: 3581eefbc38759365dd0fb668d3b3f973edeb1d5 2018-10-01 16:41:12 UTC
  6. parent: 6cedb893996a6ba95d266483da601d85f91bcbb2 2018-09-29 20:39:10 UTC
  7. tags: core-8-branch
  8. comment: Adjust when tcl consults zipfs until AFTER it has checked that env(TCL_LIBRARY) has
  9. not been set (user: hypnotoad)
  10. basra:unix seandeelywoods$ make test
  11. DYLD_LIBRARY_PATH=`pwd`: TCLLIBPATH="/Users/seandeelywoods/build/odie/tcl/unix/pkgs" TCL_LIBRARY="/Users/seandeelywoods/build/odie/tcl/library" ./tcltest /Users/seandeelywoods/build/odie/tcl/tests/all.tcl
  12. Tests running in interp: /Users/seandeelywoods/build/odie/tcl/unix/tcltest
  13. Tests located in: /Users/seandeelywoods/build/odie/tcl/tests
  14. Tests running in: /Users/seandeelywoods/build/odie/tcl/unix
  15. Temporary files stored in /Users/seandeelywoods/build/odie/tcl/unix
  16. Test files run in separate interpreters
  17. Running tests that match: *
  18. Skipping test files that match: l.*.test
  19. Only running test files that match: *.test
  20. Tests began at Mon Oct 01 12:42:14 EDT 2018
  21. aaa_exit.test
  22. append.test
  23. appendComp.test
  24. apply.test
  25. assemble.test
  26. assocd.test
  27. async.test
  28. autoMkindex.test
  29. basic.test
  30. binary.test
  31. case.test
  32. chan.test
  33. chanio.test
  34. clock.test
  35. cmdAH.test
  36. cmdIL.test
  37. cmdInfo.test
  38. cmdMZ.test
  39. compExpr-old.test
  40. compExpr.test
  41. compile.test
  42. concat.test
  43. config.test
  44. coroutine.test
  45. dcall.test
  46. dict.test
  47. dstring.test
  48. encoding.test
  49. env.test
  50. error.test
  51. eval.test
  52. event.test
  53. exec.test
  54. execute.test
  55. expr-old.test
  56. expr.test
  57. fCmd.test
  58. fileName.test
  59. fileSystem.test
  60. for-old.test
  61. for.test
  62. foreach.test
  63. format.test
  64. get.test
  65. history.test
  66. http.test
  67. http11.test
  68. httpPipeline.test
  69. if-old.test
  70. if.test
  71. incr-old.test
  72. incr.test
  73. indexObj.test
  74. info.test
  75. init.test
  76. interp.test
  77. io.test
  78. ioCmd.test
  79. ioTrans.test
  80. iogt.test
  81. join.test
  82. lindex.test
  83. link.test
  84. linsert.test
  85. list.test
  86. listObj.test
  87. llength.test
  88. lmap.test
  89. load.test
  90. lrange.test
  91. lrepeat.test
  92. lreplace.test
  93. lsearch.test
  94. lset.test
  95. lsetComp.test
  96. macOSXFCmd.test
  97.  
  98.  
  99. ==== macOSXFCmd-2.7 MacOSXSetFileAttribute - rsrclength FAILED
  100. ==== Contents of test case:
  101.  
  102. catch {file delete -force -- foo.test}
  103. close [open foo.test w]
  104. catch {
  105. set f [open foo.test/..namedfork/rsrc w]
  106. fconfigure $f -translation lf -eofchar {}
  107. puts -nonewline $f "foo"
  108. close $f
  109. }
  110. 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]
  111.  
  112. ---- Result was:
  113. 0 3 0 {} 0 3 {}
  114. ---- Result should have been (exact matching):
  115. 0 3 0 {} 0 0 {}
  116. ==== macOSXFCmd-2.7 FAILED
  117.  
  118.  
  119.  
  120. ==== macOSXFCmd-4.1 TclMacOSXMatchType FAILED
  121. ==== Contents of test case:
  122.  
  123. file mkdir globtest
  124. cd globtest
  125. foreach f {bar baz foo inv inw .nv reg} {
  126. catch {file delete -force -- $f.test}
  127. close [open $f.test w]
  128. }
  129. catch {file delete -force -- dir.test}
  130. file mkdir dir.test
  131. catch {
  132. file attributes bar.test -type FOOT
  133. file attributes baz.test -creator FOOC -type FOOT
  134. file attributes foo.test -creator FOOC
  135. file attributes inv.test -hidden 1
  136. file attributes inw.test -hidden 1 -type FOOT
  137. file attributes dir.test -hidden 1
  138. }
  139. 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 ]
  140. cd ..
  141. file delete -force globtest
  142. set res
  143.  
  144. ---- Result was:
  145. 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
  146. ---- Result should have been (exact matching):
  147. 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
  148. ==== macOSXFCmd-4.1 FAILED
  149.  
  150. macOSXLoad.test
  151. main.test
  152. mathop.test
  153. misc.test
  154. msgcat.test
  155. namespace-old.test
  156. namespace.test
  157. notify.test
  158. nre.test
  159. obj.test
  160. oo.test
  161. ooNext2.test
  162. ooUtil.test
  163. opt.test
  164. package.test
  165. parse.test
  166. parseExpr.test
  167. parseOld.test
  168. pid.test
  169. pkgMkIndex.test
  170. platform.test
  171. proc-old.test
  172. proc.test
  173. process.test
  174. pwd.test
  175. reg.test
  176. regexp.test
  177. regexpComp.test
  178. registry.test
  179. rename.test
  180. resolver.test
  181. result.test
  182. safe.test
  183. scan.test
  184. security.test
  185. set-old.test
  186. set.test
  187. socket.test
  188.  
  189.  
  190. ==== socket_inet-5.1 byte order problems, socket numbers, htons FAILED
  191. ==== Contents of test case:
  192.  
  193. if {![catch {socket -server dodo 0x1} msg]} {
  194. close $msg
  195. return {htons problem, should be disallowed, are you running as SU?}
  196. }
  197. return {couldn't open socket: not owner}
  198.  
  199. ---- Result was:
  200. htons problem, should be disallowed, are you running as SU?
  201. ---- Result should have been (exact matching):
  202. couldn't open socket: not owner
  203. ==== socket_inet-5.1 FAILED
  204.  
  205.  
  206.  
  207. ==== socket_inet-5.3 byte order problems, socket numbers, htons FAILED
  208. ==== Contents of test case:
  209.  
  210. if {![catch {socket -server dodo 21} msg]} {
  211. close $msg
  212. return {htons problem, should be disallowed, are you running as SU?}
  213. }
  214. return {couldn't open socket: not owner}
  215.  
  216. ---- Result was:
  217. htons problem, should be disallowed, are you running as SU?
  218. ---- Result should have been (exact matching):
  219. couldn't open socket: not owner
  220. ==== socket_inet-5.3 FAILED
  221.  
  222.  
  223.  
  224. ==== socket_inet6-5.1 byte order problems, socket numbers, htons FAILED
  225. ==== Contents of test case:
  226.  
  227. if {![catch {socket -server dodo 0x1} msg]} {
  228. close $msg
  229. return {htons problem, should be disallowed, are you running as SU?}
  230. }
  231. return {couldn't open socket: not owner}
  232.  
  233. ---- Result was:
  234. htons problem, should be disallowed, are you running as SU?
  235. ---- Result should have been (exact matching):
  236. couldn't open socket: not owner
  237. ==== socket_inet6-5.1 FAILED
  238.  
  239.  
  240.  
  241. ==== socket_inet6-5.3 byte order problems, socket numbers, htons FAILED
  242. ==== Contents of test case:
  243.  
  244. if {![catch {socket -server dodo 21} msg]} {
  245. close $msg
  246. return {htons problem, should be disallowed, are you running as SU?}
  247. }
  248. return {couldn't open socket: not owner}
  249.  
  250. ---- Result was:
  251. htons problem, should be disallowed, are you running as SU?
  252. ---- Result should have been (exact matching):
  253. couldn't open socket: not owner
  254. ==== socket_inet6-5.3 FAILED
  255.  
  256. source.test
  257. split.test
  258. stack.test
  259. string.test
  260. stringObj.test
  261. subst.test
  262. switch.test
  263. tailcall.test
  264. tcltest.test
  265. thread.test
  266. timer.test
  267. tm.test
  268. trace.test
  269. unixFCmd.test
  270. unixFile.test
  271. unixForkEvent.test
  272. unixInit.test
  273. unixNotfy.test
  274. unknown.test
  275. unload.test
  276. uplevel.test
  277. upvar.test
  278. utf.test
  279. util.test
  280. var.test
  281. while-old.test
  282. while.test
  283. winConsole.test
  284. winDde.test
  285. winFCmd.test
  286. winFile.test
  287. winNotify.test
  288. winPipe.test
  289. winTime.test
  290. zipfs.test
  291.  
  292.  
  293. ==== zipfs-0.3 zipfs basics: glob FAILED
  294. ==== Contents of test case:
  295.  
  296. set pwd [pwd]
  297. cd $tcl_library
  298. lsort [glob -dir . http*]
  299.  
  300. ---- Result was:
  301. ./http ./http1.0
  302. ---- Result should have been (exact matching):
  303. ./http
  304. ==== zipfs-0.3 FAILED
  305.  
  306.  
  307.  
  308. ==== zipfs-0.4 zipfs basics: glob FAILED
  309. ==== Contents of test case:
  310.  
  311. set pwd [pwd]
  312. cd $tcl_library
  313. lsort [glob -dir [pwd] http*]
  314.  
  315. ---- Result was:
  316. //zipfs:/lib/tcl/tcl_library/http //zipfs:/lib/tcl/tcl_library/http1.0
  317. ---- Result should have been (exact matching):
  318. //zipfs:/lib/tcl/tcl_library/http
  319. ==== zipfs-0.4 FAILED
  320.  
  321.  
  322.  
  323. ==== zipfs-0.5 zipfs basics: glob FAILED
  324. ==== Contents of test case:
  325.  
  326. lsort [glob -dir $tcl_library http*]
  327.  
  328. ---- Result was:
  329. //zipfs:/lib/tcl/tcl_library/http //zipfs:/lib/tcl/tcl_library/http1.0
  330. ---- Result should have been (exact matching):
  331. //zipfs:/lib/tcl/tcl_library/http
  332. ==== zipfs-0.5 FAILED
  333.  
  334.  
  335.  
  336. ==== zipfs-0.6 zipfs basics: glob FAILED
  337. ==== Contents of test case:
  338.  
  339. lsort [glob $tcl_library/http*]
  340.  
  341. ---- Result was:
  342. //zipfs:/lib/tcl/tcl_library/http //zipfs:/lib/tcl/tcl_library/http1.0
  343. ---- Result should have been (exact matching):
  344. //zipfs:/lib/tcl/tcl_library/http
  345. ==== zipfs-0.6 FAILED
  346.  
  347.  
  348.  
  349. ==== zipfs-0.7 zipfs basics: glob FAILED
  350. ==== Contents of test case:
  351.  
  352. lsort [glob -tails -dir $tcl_library http*]
  353.  
  354. ---- Result was:
  355. http http1.0
  356. ---- Result should have been (exact matching):
  357. http
  358. ==== zipfs-0.7 FAILED
  359.  
  360.  
  361.  
  362. ==== zipfs-0.8 zipfs basics: glob FAILED
  363. ==== Contents of test case:
  364.  
  365. lsort [glob -nocomplain -tails -types d -dir $tcl_library http*]
  366.  
  367. ---- Result was:
  368. http http1.0
  369. ---- Result should have been (exact matching):
  370. http
  371. ==== zipfs-0.8 FAILED
  372.  
  373. zlib.test
  374.  
  375. Tests ended at Mon Oct 01 12:45:19 EDT 2018
  376. all.tcl: Total 35857 Passed 32571 Skipped 3274 Failed 12
  377. Sourced 150 Test Files.
  378. Files with failing tests: macOSXFCmd.test socket.test zipfs.test
  379. Number of tests skipped for each constraint:
  380. 9 !ieeeFloatingPoint
  381. 3 asyncPipeChan
  382. 76 bigEndian
  383. 5 bug-3057639
  384. 49 dde
  385. 4 dontCopyLinks
  386. 64 emptyTest
  387. 1 execMknod
  388. 2 hasIsoLocale
  389. 1 knownBadTest
  390. 39 knownBug
  391. 2 largefileSupport
  392. 100 localeRegexp
  393. 50 longIs32bit
  394. 88 memory
  395. 47 nonPortable
  396. 1 notDarwin9
  397. 5 notNetworkFilesystem
  398. 1 notValgrind
  399. 1 obsolete
  400. 1996 serverNeeded
  401. 3 singleTestInterp
  402. 1 testexprparser && !ieeeFloatingPoint
  403. 1 testwinclock
  404. 21 testwordend
  405. 189 thread
  406. 494 win
  407. 4 winVista
  408. 6 xdev
  409. basra:unix seandeelywoods$
  410.