Custom Query (1630 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (28 - 30 of 1630)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Ticket Resolution Summary Owner Reporter
#982 fixed stty output flags manipulate input flags in termios struct Alex Shinn Christian Kellermann
Description

stty.scm:401 in svn -r24492 contains:

                ((output)
                 (if flag
                     (set! oflag (bitwise-ior oflag (cadr x)))
                     (set! iflag (bitwise-and oflag (bitwise-not (cadr x)))))
                 (lp (cdr lst) flag))

Is the set! oflag intentional? looks like a typo...

#1102 fixed pty: tests need the test egg Alex Shinn Mario Domenech Goulart
Description

See http://tests.call-cc.org/master/linux/x86/2014/03/04/salmonella-report/test/pty.htmlz for the error.

Probably just a matter of adding

(test-depends test)

to the .meta file (and tag a new version)

#1103 fixed pty test script doesn't report failures (and one test fails) Alex Shinn Mario Domenech Goulart
Description

See http://salmonella-linux-x86-64.call-cc.org/master-debugbuild/gcc/linux/x86-64/2014/03/06/salmonella-report/test/pty.htmlz (note that salmonella reports tests status as "OK", although at least one test failed).

For salmonella to be able to detect when tests succeed or failed, it uses the run.scm exit code. It seems that pty's run.scm is not properly reporting the exit code (we usually use (test-exit) at the end of tests).

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