public inbox for cygwin-patches@cygwin.com
 help / color / mirror / Atom feed
* [PATCH 0/8] Further testsuite fixes
@ 2023-01-10 16:37 Jon Turney
  2023-01-10 16:37 ` [PATCH 1/8] Cygwin: testsuite: automake doesn't define objdir Jon Turney
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Jon Turney @ 2023-01-10 16:37 UTC (permalink / raw)
  To: cygwin-patches; +Cc: Jon Turney

This gets us from:

> FAIL: cygload (execute)
> FAIL: devdsp.c (execute)
> FAIL: ltp/access05.c (execute)
> FAIL: ltp/fcntl07.c (execute)
> FAIL: ltp/fcntl07B.c (execute)
> FAIL: ltp/fork09.c (execute)
> FAIL: ltp/link04.c (execute)
> FAIL: ltp/symlink03.c (execute)
> FAIL: msgtest.c (execute)
> FAIL: pthread/cancel11.c (execute)
> FAIL: pthread/cancel3.c (execute)
> FAIL: pthread/cancel5.c (execute)
> FAIL: pthread/inherit1.c (execute)
> FAIL: pthread/mutex5.c (execute)
> FAIL: pthread/mutex7.c (execute)
> FAIL: pthread/mutex7d.c (execute)
> FAIL: pthread/mutex7n.c (execute)
> FAIL: pthread/priority1.c (execute)
> FAIL: pthread/priority2.c (execute)
> FAIL: pthread/rwlock6.c (execute)
> FAIL: semtest.c (execute)
> FAIL: shmtest.c (execute)
> FAIL: systemcall.c (execute)
> 
> 		=== winsup Summary ===
> 
> # of expected passes		255
> # of unexpected failures	23
> # of expected failures		6

to:

> FAIL: cygload
> FAIL: devdsp.c
> FAIL: ltp/access05.c
> FAIL: ltp/fcntl07.c
> FAIL: ltp/fork09.c
> FAIL: ltp/symlink01.c
> FAIL: ltp/symlink03.c
> FAIL: ltp/umask03.c
> FAIL: pthread/cancel11.c
> FAIL: pthread/cancel3.c
> FAIL: pthread/cancel5.c
> FAIL: pthread/inherit1.c
> FAIL: pthread/priority1.c
> FAIL: pthread/priority2.c
> FAIL: systemcall.c
> 
> 		=== winsup Summary ===
> 
> # of expected passes		263
> # of unexpected failures	15
> # of expected failures		5

which is almost manageable!

Jon Turney (8):
  Cygwin: testsuite: automake doesn't define objdir
  Cygwin: testsuite: Build testcases using automake
  Cygwin: testsuite: Fix compilation warnings
  Cygwin: testsuite: 64-bit fixes in pthread testcases
  Cygwin: testsuite: Update mutex tests for changed default mutex type
  Cygwin: testsuite: Update pthread tests for default SCHED_FIFO
  Cygwin: testsuite: Drop appending 'ntsec' to CYGWIN in cygrun wrapper
  Cygwin: CI: Run cygserver for tests

 .github/workflows/cygwin.yml                  |  16 +-
 winsup/configure.ac                           |   2 +-
 winsup/testsuite/Makefile.am                  | 309 +++++++++++++++++-
 winsup/testsuite/README                       |   2 +-
 winsup/testsuite/cygrun.c                     |  16 -
 winsup/testsuite/libltp/include/usctest.h     |   2 +-
 .../testsuite/{cygrun => mingw}/Makefile.am   |  11 +-
 winsup/testsuite/winsup.api/cygload.exp       |  32 +-
 winsup/testsuite/winsup.api/ltp/execv01.c     |   2 +-
 winsup/testsuite/winsup.api/ltp/execve01.c    |   2 +-
 winsup/testsuite/winsup.api/ltp/execvp01.c    |   2 +-
 winsup/testsuite/winsup.api/ltp/mmap02.c      |  10 +-
 winsup/testsuite/winsup.api/ltp/mmap03.c      |  10 +-
 winsup/testsuite/winsup.api/ltp/mmap04.c      |  10 +-
 winsup/testsuite/winsup.api/ltp/mmap05.c      |  10 +-
 winsup/testsuite/winsup.api/ltp/mmap06.c      |   8 +-
 winsup/testsuite/winsup.api/ltp/mmap07.c      |   8 +-
 winsup/testsuite/winsup.api/ltp/mmap08.c      |   8 +-
 winsup/testsuite/winsup.api/mmaptest03.c      |   2 +-
 winsup/testsuite/winsup.api/pthread/cancel2.c |  10 +-
 winsup/testsuite/winsup.api/pthread/cancel3.c |  10 +-
 winsup/testsuite/winsup.api/pthread/cancel4.c |  10 +-
 winsup/testsuite/winsup.api/pthread/cancel5.c |  12 +-
 .../testsuite/winsup.api/pthread/cleanup2.c   |  10 +-
 .../testsuite/winsup.api/pthread/cleanup3.c   |   8 +-
 .../testsuite/winsup.api/pthread/condvar2_1.c |  12 +-
 .../testsuite/winsup.api/pthread/condvar3_1.c |  12 +-
 .../testsuite/winsup.api/pthread/condvar3_2.c |  14 +-
 winsup/testsuite/winsup.api/pthread/exit3.c   |   2 +-
 .../testsuite/winsup.api/pthread/inherit1.c   |  12 +-
 winsup/testsuite/winsup.api/pthread/join1.c   |  10 +-
 winsup/testsuite/winsup.api/pthread/join2.c   |   8 +-
 winsup/testsuite/winsup.api/pthread/mutex4.c  |   2 +-
 winsup/testsuite/winsup.api/pthread/mutex5.c  |   2 +-
 winsup/testsuite/winsup.api/pthread/mutex7.c  |   3 +-
 winsup/testsuite/winsup.api/pthread/mutex7d.c |   3 +-
 winsup/testsuite/winsup.api/pthread/mutex7n.c |   1 -
 .../testsuite/winsup.api/pthread/priority1.c  |  10 +-
 .../testsuite/winsup.api/pthread/priority2.c  |  12 +-
 winsup/testsuite/winsup.api/pthread/rwlock6.c |  22 +-
 .../winsup.api/samples/sample-miscompile.c    |   1 -
 winsup/testsuite/winsup.api/systemcall.c      |   2 +-
 winsup/testsuite/winsup.api/user_malloc.c     |   4 +-
 winsup/testsuite/winsup.api/winsup.exp        |  37 +--
 44 files changed, 470 insertions(+), 221 deletions(-)
 rename winsup/testsuite/{cygrun => mingw}/Makefile.am (58%)
 delete mode 100644 winsup/testsuite/winsup.api/samples/sample-miscompile.c

-- 
2.39.0


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2023-01-10 16:37 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-10 16:37 [PATCH 0/8] Further testsuite fixes Jon Turney
2023-01-10 16:37 ` [PATCH 1/8] Cygwin: testsuite: automake doesn't define objdir Jon Turney
2023-01-10 16:37 ` [PATCH 2/8] Cygwin: testsuite: Build testcases using automake Jon Turney
2023-01-10 16:37 ` [PATCH 3/8] Cygwin: testsuite: Fix compilation warnings Jon Turney
2023-01-10 16:37 ` [PATCH 4/8] Cygwin: testsuite: 64-bit fixes in pthread testcases Jon Turney
2023-01-10 16:37 ` [PATCH 5/8] Cygwin: testsuite: Update mutex tests for changed default mutex type Jon Turney
2023-01-10 16:37 ` [PATCH 6/8] Cygwin: testsuite: Update pthread tests for default SCHED_FIFO Jon Turney
2023-01-10 16:37 ` [PATCH 7/8] Cygwin: testsuite: Drop appending 'ntsec' to CYGWIN in cygrun wrapper Jon Turney
2023-01-10 16:37 ` [PATCH 8/8] Cygwin: CI: Run cygserver for tests Jon Turney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).