Custom Query (1630 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (19 - 21 of 1630)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Ticket Resolution Summary Owner Reporter
#295 fixed Nested test groups report success even when subgroups failed Alex Shinn sjamaan
Description

Here's an example:

#;1> (use test)
#;2> (test-group "a" (test-group "b" (test-group "c" (test 1 2))))

-- testing a -----------------------------------------------------------------

    -- testing b -------------------------------------------------------------

        -- testing c ---------------------------------------------------------
        2 ............................................................ [ FAIL]
    expected 1 but got 2
        1 test completed in 0.009 seconds.
        1 failure (100%).
        0 out of 1 (0%) tests passed.
        -- done testing c ----------------------------------------------------

    1 subgroup completed in 0.01 seconds.
    0 out of 1 (0%) subgroups passed.
    -- done testing b --------------------------------------------------------

1 subgroup completed in 0.011 seconds.
1 out of 1 (100%) subgroup passed.
-- done testing a ------------------------------------------------------------ 

Subgroup C fails, causing subgroup B to report failure as well, but somehow subgroup A thinks subgroup B didn't fail.

#422 fixed [utf8 egg] problem with utf8-case-map and Windows Alex Shinn m
Description

I had no problems installing utf8 egg on Windows using chicken-install tool, however I had problems with case-map-1.dat file. It is located in lib/chicken/5/ directory with other modules, however, when I try to load utf8-case-map I get this warning:

#;1> (use utf8-case-map)
; loading /usr/local/lib/chicken/5/utf8-case-map.import.so ...
; loading /usr/local/lib/chicken/5/scheme.import.so ...
; loading /usr/local/lib/chicken/5/chicken.import.so ...
; loading /usr/local/lib/chicken/5/extras.import.so ...
; loading /usr/local/lib/chicken/5/ports.import.so ...
; loading /usr/local/lib/chicken/5/posix.import.so ...
; loading /usr/local/lib/chicken/5/srfi-4.import.so ...
; loading /usr/local/lib/chicken/5/utf8-lolevel.import.so ...
; loading /usr/local/lib/chicken/5/lolevel.import.so ...
; loading /usr/local/lib/chicken/5/utf8-srfi-14.import.so ...
; loading /usr/local/lib/chicken/5/srfi-69.import.so ...
; loading /usr/local/lib/chicken/5/iset.import.so ...
; loading /usr/local/lib/chicken/5/unicode-char-sets.import.so ...
; loading /usr/local/lib/chicken/5/utf8-case-map.so ...
; loading /usr/local/lib/chicken/5/utf8-lolevel.so ...
; loading /usr/local/lib/chicken/5/utf8-srfi-14.so ...
; loading /usr/local/lib/chicken/5/iset.so ...
; loading /usr/local/lib/chicken/5/unicode-char-sets.so ...

Warning: couldn't load case-map-1.dat

After that utf8-srfi-13 doesn't really work well:

#;4> (use utf8-srfi-13)
; loading /usr/local/lib/chicken/5/utf8-srfi-13.import.so ...
; loading /usr/local/lib/chicken/5/data-structures.import.so ...
; loading /usr/local/lib/chicken/5/utf8-srfi-13.so ...
#;5> (string-upcase "привет")

Error: (u32vector-ref) out of range
0
0
0

	Call history:

	<syntax>		(string-upcase "привет")
	<eval>		(string-upcase "привет")	<--
#;5> (string-upcase "hello")
"HELLO"

My Chicken Scheme version:

CHICKEN
(c)2008-2010 The Chicken Team
(c)2000-2007 Felix L. Winkelmann
Version 4.5.0
windows-mingw32-x86 [ manyargs dload ptables ]
compiled 21.08.2010  on Semerochka (MinGW)

btw, utf8 egg works flawlessly on linux

#423 fixed chicken-uninstall -s leaves unicode-char-sets in lib/chicken/5 Alex Shinn Alan Post
Description

After uninstalling utf8 with the command:

chicken-uninstall -s utf8

The following files remain in lib/chicken/5:

unicode-char-sets.import.so unicode-char-sets.setup-info unicode-char-sets.so

I would expect these files to be removed when the utf8 egg is removed.

I've seen this behavior on OpenBSD 4.8 and Debian 5.0.6.

I'm running chicken revision ce65dcc50b02d740a2a74ad1c5915acffff97170 from the experimental branch.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Note: See TracQuery for help on using queries.