Re: Intermittent failures retrieving process exit codes - snapshot test requested

2012-12-31 Thread Christopher Faylor
On Mon, Dec 31, 2012 at 08:44:56PM -0500, Tom Honermann wrote: >On 12/29/2012 04:57 PM, Christopher Faylor wrote: >> On Thu, Dec 27, 2012 at 03:49:24PM -0500, Tom Honermann wrote: >>> When interrupting the test run, I'll often (but not always) get the >>> following error: >>> >>> c:\>test-strace.ba

Re: sigprocmask issue

2012-12-31 Thread Christopher Faylor
On Mon, Dec 31, 2012 at 05:18:52PM -0700, Eric Blake wrote: >I'm reporting this now because gnulib unit tests found a failure in >stock cygwin 1.7.17, but I'm still investigating whether it is a >regression, and/or whether it has been fixed by snapshots. This sounds similar to a problem reported a

[ANNOUNCEMENT] Updated: googlecl-0.9.14-1

2012-12-31 Thread Chris Sutcliffe
Version 0.9.14-1 of googlecl has been uploaded. GoogleCL brings Google services to the command line. For examples see: http://code.google.com/p/googlecl/wiki/ExampleScripts version 0.9.14 Bugfixes: * Fixed bug in command line parsing, added message if Discovery can't be used. * Remove bogus

Re: sigprocmask issue

2012-12-31 Thread Aaron Schneider
On 01/01/2013 1:59, Eric Blake wrote: Odd. I just noticed that my system is pegged at 100% CPU, attributed to a syslogd process; wonder if severe load is the culprit that violates the timing assumptions in that test. I killed that process, reran the test, and no longer see the failure. I'm won

Re: Intermittent failures retrieving process exit codes - snapshot test requested

2012-12-31 Thread Tom Honermann
On 12/29/2012 04:57 PM, Christopher Faylor wrote: On Thu, Dec 27, 2012 at 03:49:24PM -0500, Tom Honermann wrote: When interrupting the test run, I'll often (but not always) get the following error: c:\>test-strace.bat test... test... test... test... --- Process 8092, exception 40010005 at 75E26

Re: sigprocmask issue

2012-12-31 Thread Eric Blake
On 12/31/2012 05:30 PM, Aaron Schneider wrote: > On 01/01/2013 1:18, Eric Blake wrote: >> I'm reporting this now because gnulib unit tests found a failure in >> stock cygwin 1.7.17, but I'm still investigating whether it is a >> regression, and/or whether it has been fixed by snapshots. This >> re

Re: sigprocmask issue

2012-12-31 Thread Aaron Schneider
On 01/01/2013 1:18, Eric Blake wrote: I'm reporting this now because gnulib unit tests found a failure in stock cygwin 1.7.17, but I'm still investigating whether it is a regression, and/or whether it has been fixed by snapshots. This relatively simple test case asserts that SIGINT is never deli

sigprocmask issue

2012-12-31 Thread Eric Blake
I'm reporting this now because gnulib unit tests found a failure in stock cygwin 1.7.17, but I'm still investigating whether it is a regression, and/or whether it has been fixed by snapshots. This relatively simple test case asserts that SIGINT is never delivered as required. #include #include

Re: command not found when running from batch

2012-12-31 Thread marco atzeri
On 12/31/2012 6:32 PM, zgintasz wrote: First of all, thanks for reply. I'm compiling my own project with cygwin by launching build.sh. If I open cygwin, then locate path and then run build.sh, everything works totally fine: 1. open cygwin 2. cd F:/Projektai/osdev cygwin way cd /cygdrive/f/Proje

dup2() dumps core on corner case

2012-12-31 Thread Eric Blake
Detected by gnulib's unit tests. STC: $ cat foo.c #include int main() { return dup2(0, -1); } $ gcc -o foo -g -Wall foo.c $ ./foo Segmentation fault (core dumped) cygwin 1.7.17-1 Running under gdb shows: 4 [main] foo 1220 exception::handle: Exception: STATUS_ACCESS_VIOLATION 702 [m

Re: command not found when running from batch

2012-12-31 Thread marco atzeri
On 12/31/2012 4:48 PM, zgintasz wrote: Hi, first: you are on the wrong mailing list, use cygwin (at) cygwin (dot) com I'm trying to make building process easier. When I launch cygwin and run build.sh script, everything is fine, but I want to launch this script from batch file. I do thi