Re: problem with a test that is expected to fail, on cygwin only...

2007-03-29 Thread Ralf Wildenhues
[ http://lists.gnu.org/archive/html/automake-patches/2007-01/msg5.html ] * Ralf Wildenhues wrote on Thu, Jan 18, 2007 at 10:22:28PM CET: > * Ed Hartnett wrote on Tue, Jan 16, 2007 at 03:17:00AM CET: > > > > I am having a problem on cygwin only. > > > > I have a test which is expected to fai

Re: problem with a test that is expected to fail, on cygwin only...

2007-01-20 Thread Ralf Wildenhues
Hello Benoit, * Benoit Sigoure wrote on Tue, Jan 16, 2007 at 09:26:02AM CET: > > This post gives me a weird feeling of ``deja vu'' > http://lists.gnu.org/archive/html/automake/2006-11/msg00073.html Not me, though. Your issue is one where I don't know how to fix it without also breaking the inten

Re: problem with a test that is expected to fail, on cygwin only...

2007-01-18 Thread Ralf Wildenhues
* Ed Hartnett wrote on Tue, Jan 16, 2007 at 03:17:00AM CET: > > I am having a problem on cygwin only. > > I have a test which is expected to fail. In the Makefile.am I have > this: > > TESTFILES = nctst tst_failure > check_PROGRAMS = $(TESTFILES) > nctst_SOURCES = nctst.cpp > tst_failure_SOURCE

Re: problem with a test that is expected to fail, on cygwin only...

2007-01-16 Thread Ed Hartnett
Brian Dessent <[EMAIL PROTECTED]> writes: > Ed Hartnett wrote: > >> TESTFILES = nctst tst_failure >> [...] >> TESTS = $(TESTFILES) run_nc_tests.sh >> XFAIL_TESTS = tst_failure >> [...] >> XFAIL: tst_failure >> [...] >> FAIL: tst_failure.exe > > Notice the difference? You probably should specify "

Re: problem with a test that is expected to fail, on cygwin only...

2007-01-16 Thread Benoit Sigoure
Quoting Ralf Wildenhues <[EMAIL PROTECTED]>: * Brian Dessent wrote on Tue, Jan 16, 2007 at 03:33:27AM CET: Ed Hartnett wrote: > TESTFILES = nctst tst_failure > [...] > TESTS = $(TESTFILES) run_nc_tests.sh > XFAIL_TESTS = tst_failure > [...] > XFAIL: tst_failure > [...] > FAIL: tst_failure.exe

Re: problem with a test that is expected to fail, on cygwin only...

2007-01-16 Thread Ralf Wildenhues
* Brian Dessent wrote on Tue, Jan 16, 2007 at 03:33:27AM CET: > Ed Hartnett wrote: > > > TESTFILES = nctst tst_failure > > [...] > > TESTS = $(TESTFILES) run_nc_tests.sh > > XFAIL_TESTS = tst_failure > > [...] > > XFAIL: tst_failure > > [...] > > FAIL: tst_failure.exe > > Notice the difference?

Re: problem with a test that is expected to fail, on cygwin only...

2007-01-15 Thread Brian Dessent
Ed Hartnett wrote: > TESTFILES = nctst tst_failure > [...] > TESTS = $(TESTFILES) run_nc_tests.sh > XFAIL_TESTS = tst_failure > [...] > XFAIL: tst_failure > [...] > FAIL: tst_failure.exe Notice the difference? You probably should specify "TESTFILES = nctst$(EXEEXT) tst_failure$(EXEEXT)" and "XFA

problem with a test that is expected to fail, on cygwin only...

2007-01-15 Thread Ed Hartnett
Howdy all! I am having a problem on cygwin only. I have a test which is expected to fail. In the Makefile.am I have this: TESTFILES = nctst tst_failure check_PROGRAMS = $(TESTFILES) nctst_SOURCES = nctst.cpp tst_failure_SOURCES = tst_failure.cpp TESTS = $(TESTFILES) run_nc_tests.sh XFAIL_TESTS