Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

make test | Tcl 8.6.11

35 views
Skip to first unread message

Roderick

unread,
Jul 12, 2021, 9:58:02 AM7/12/21
to

I get two failed tests on FreeBSD 11.4-RELEASE-p1

socket.test


==== socket-14.7.1 pending [socket -async] and blocking [gets], server is
IPv6 FAILED
==== Contents of test case:

set sock [socket -async localhost $port]
list [fconfigure $sock -error] [gets $sock] [fconfigure $sock -error]

---- Result was:
{} {} {}
---- Result should have been (exact matching):
{} ok {}
==== socket-14.7.1 FAILED

source.test
split.test
stack.test
string.test
stringComp.test
stringObj.test
subst.test
switch.test
tailcall.test
tcltest.test
thread.test
timer.test
tm.test
trace.test
unixFCmd.test


==== unixFCmd-20.1 SetReadOnlyAttribute FAILED
==== Contents of test case:

close [open foo.test w]
list [catch {file attributes foo.test -readonly 1} msg] $msg [catch
{file attribute foo.test -readonly} msg] $msg [catch {file delete -force
-- foo.test}] [catch {file attributes foo.test -readonly 0} msg] $msg
[catch {file attribute foo.test -readonly} msg] $msg

---- Result was:
1 {could not set flags for file "foo.test": operation not supported} 0 0 0
1 {could not read "foo.test": no such file or directory} 1 {could not read
"foo.test": no such file or directory}
---- Result should have been (exact matching):
0 {} 0 1 1 0 {} 0 0
==== unixFCmd-20.1 FAILED


Roderick

unread,
Jul 12, 2021, 10:10:55 AM7/12/21
to

And with tk I get much more failed tests. Is there a log file containing
test results?

R.

Francois Vogel

unread,
Jul 12, 2021, 3:40:20 PM7/12/21
to
Le 12/07/2021 à 16:04, Roderick a écrit :
>
> And with tk I get much more failed tests.

Depending on the platform, yes. Many many are due to font issues. I have
started to fix this in branch 'less_tests_constraints'.

> Is there a log file containing
> test results?

I don't think so. If you want you can always use a pipe I think?

Regards,
Francois

briang

unread,
Jul 12, 2021, 4:56:05 PM7/12/21
to
On Monday, July 12, 2021 at 12:40:20 PM UTC-7, Francois Vogel wrote:
> Le 12/07/2021 à 16:04, Roderick a écrit :
> >
> > And with tk I get much more failed tests.
> Depending on the platform, yes. Many many are due to font issues. I have
> started to fix this in branch 'less_tests_constraints'.

Awhile ago I was working on the font tests and was thinking that it would greatly improve things if we included a standard open font set with Tk, and use that as the fallback font. The regression tests, and fallback situations would then be consistent across various platform configurations. I was playing with the Liberation fonts at the time until I started to have hard drive issues (very old computers), then got sidetracked for awhile... I am wondering what the community's thoughts are on this idea.

https://fonts.adobe.com/search?query=liberation&utf8=✓

-Brian

0 new messages