, char **argv)
exitStatus (status, 0);
errCode (posix_spawn_file_actions_destroy (&fa));
+ /* test posix_spawn_file_actions_addopen with O_CLOEXEC */
+ errCode (posix_spawn_file_actions_init (&fa));
+ errCode (posix_spawn_file_actions_addopen (&fa, 0
> > > > > > > > > -Wl,--disable-high-entropy-va in LDFLAGS?
> > > > > > > >
> > > > > > > > Why?
> > > > > > >
> > > > > > > With high-entropy-va, it has been observed that the PEB, TEB and
&
gt; > > > Why?
> > > > > >
> > > > > > With high-entropy-va, it has been observed that the PEB, TEB and
> > > > > > stack can
> > > > > > happen to overlap with the cygheap
> > > > > > https://cygwin
mingw/Makefile.am, shouldn't cygload
> > > > > > > have
> > > > > > > -Wl,--disable-high-entropy-va in LDFLAGS?
> > > > > >
> > > > > > Why?
> > > > >
> > > > > With high-entropy-va, it has been observed that
tropy-va in LDFLAGS?
> > > > >
> > > > > Why?
> > > >
> > > > With high-entropy-va, it has been observed that the PEB, TEB and stack
> > > > can
> > > > happen to overlap with the cygheap
> > > > htt
it has been observed that the PEB, TEB and stack can
> > > happen to overlap with the cygheap
> > > https://cygwin.com/pipermail/cygwin/2024-May/256000.html
> >
> > Yeah, but HEVA simply breaks fork. We don't have to test this, because
> > it won't work and
gwin.com/pipermail/cygwin/2024-May/256000.html
>
> Yeah, but HEVA simply breaks fork. We don't have to test this, because
> it won't work and we don't do it. You can set the PE flag, but than
> you're on your own.
Outside of fork, is cygheap able to "relocate" in case the memory it would
like to occupy is already used?
On Jun 27 12:13, Jeremy Drake via Cygwin-patches wrote:
> On Fri, 27 Jun 2025, Corinna Vinschen wrote:
>
> > On Jun 26 13:34, Jeremy Drake via Cygwin-patches wrote:
> > > It doesn't make a whole lot of sense to redirect stdin/out/err to/from a
> > > directory ha
-disable-high-entropy-va in LDFLAGS?
> >
> > Why?
>
> With high-entropy-va, it has been observed that the PEB, TEB and stack can
> happen to overlap with the cygheap
> https://cygwin.com/pipermail/cygwin/2024-May/256000.html
Yeah, but HEVA simply breaks fork. We don't have
On Jun 27 10:00, Jeremy Drake via Cygwin-patches wrote:
> On Fri, 27 Jun 2025, Corinna Vinschen wrote:
>
> > On Jun 26 13:29, Jeremy Drake via Cygwin-patches wrote:
> > > This is apparently relative to the new cwd, but my implementation is
> > > currently treating it as relative to the parent's cw
On Fri, 27 Jun 2025, Corinna Vinschen wrote:
> On Jun 26 13:34, Jeremy Drake via Cygwin-patches wrote:
> > It doesn't make a whole lot of sense to redirect stdin/out/err to/from a
> > directory handle, but test it anyway.
>
> I disagree. There's nothing wrong i
On Fri, 27 Jun 2025, Corinna Vinschen wrote:
> On Jun 26 13:31, Jeremy Drake via Cygwin-patches wrote:
> > BTW, I noticed while editing mingw/Makefile.am, shouldn't cygload have
> > -Wl,--disable-high-entropy-va in LDFLAGS?
>
> Why?
With high-entropy-va, it has been observed that the PEB, TEB and
On Fri, 27 Jun 2025, Corinna Vinschen wrote:
> On Jun 26 13:29, Jeremy Drake via Cygwin-patches wrote:
> > This is apparently relative to the new cwd, but my implementation is
> > currently treating it as relative to the parent's cwd, so it's worth
> > testing.
> >
> > Signed-off-by: Jeremy Drake
On Jun 26 13:34, Jeremy Drake via Cygwin-patches wrote:
> It doesn't make a whole lot of sense to redirect stdin/out/err to/from a
> directory handle, but test it anyway.
I disagree. There's nothing wrong if a program expects a directory
handle on a file descriptor if the task
On Jun 26 13:31, Jeremy Drake via Cygwin-patches wrote:
> This program is currently meant to test standard file handles and
> current working directory (since these are settable via posix_spawn),
> but could be extended to add additional checks if other cygwin-to-win32
> process proper
On Jun 26 13:29, Jeremy Drake via Cygwin-patches wrote:
> This is apparently relative to the new cwd, but my implementation is
> currently treating it as relative to the parent's cwd, so it's worth
> testing.
>
> Signed-off-by: Jeremy Drake
> ---
> winsup/testsuite/winsup.api/posix_spawn/errors.
This is apparently relative to the new cwd, but my implementation is
currently treating it as relative to the parent's cwd, so it's worth
testing.
Signed-off-by: Jeremy Drake
---
winsup/testsuite/winsup.api/posix_spawn/errors.c | 8
1 file changed, 8 insertions(+)
diff --git a/winsup/t
It doesn't make a whole lot of sense to redirect stdin/out/err to/from a
directory handle, but test it anyway.
Signed-off-by: Jeremy Drake
---
winsup/testsuite/winsup.api/posix_spawn/chdir.c | 12
winsup/testsuite/winsup.api/posix_spawn/win32.c | 11 +++
2 files change
Test CWD and redirection of standard handles.
Signed-off-by: Jeremy Drake
---
winsup/testsuite/Makefile.am | 1 +
.../testsuite/winsup.api/posix_spawn/win32.c | 170 ++
2 files changed, 171 insertions(+)
create mode 100644 winsup/testsuite/winsup.api
This program is currently meant to test standard file handles and
current working directory (since these are settable via posix_spawn),
but could be extended to add additional checks if other cygwin-to-win32
process properties need to be tested.
Change cygrun environment variable to mingwtestdir
On Jun 24 13:47, Jeremy Drake via Cygwin-patches wrote:
> Also test their interaction with addopen, as opens added subsequent to a
> chdir need to be relative to that new cwd.
>
> In order for the tests to compile on Linux, define O_SEARCH to O_PATH if
> O_SEARCH is not defin
Also test their interaction with addopen, as opens added subsequent to a
chdir need to be relative to that new cwd.
In order for the tests to compile on Linux, define O_SEARCH to O_PATH if
O_SEARCH is not defined, and use the *chdir_np names instead of the
now-standardized *chdir.
Signed-off-by
, "", NULL};
+
+ /* unbuffer stdout */
+ setvbuf(stdout, NULL, _IONBF, 0);
+
+ if (argc == 4 && !strcmp (argv[1], "--child"))
+return handle_child (argv[2], argv[3]);
+
+ /* open file descriptors to test inheritance */
+ negError (fd = open ("/dev/null"
Test both that SIG_IGN and sigprocmask are inherited by default, and
that posix_spawnattr options can prevent this.
Signed-off-by: Jeremy Drake
---
winsup/testsuite/Makefile.am | 1 +
.../winsup.api/posix_spawn/signals.c | 82 +++
.../testsuite
+{
+ pid_t pid;
+ int status;
+ /* the test installation has very limited binaries on the PATH, but sh is one
+ of them and 'true' should be a builtin */
+ char *childargv[] = {"sh", "-c", "true", NULL};
+ char *childenv[] = {NULL};
+
+ /* unbuffer std
more of a baseline for how this test behaves).
I have seen the 'kill' and 'alarm' stress-ng tests sometimes fail on
arm64. I'm sure this is a bug in Cygwin somewhere, but investigating it
isn't easy without the hardware...
On 27/04/2025 22:20, Jeremy Drake via Cygwin-patches wrote:
On Sun, 27 Apr 2025, Jon Turney wrote:
Use an output variable from cygwin-install-action to inform where we
unpack the just-built cygwin artifact, because apparently the Windows
ARM64 runners have a different configuration (no D: drive
+++
> 1 file changed, 13 insertions(+), 8 deletions(-)
>
> diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml
> index fa00834ce..54d7de1bb 100644
> --- a/.github/workflows/cygwin.yml
> +++ b/.github/workflows/cygwin.yml
> @@ -204,14 +2
n.yml | 21 +
1 file changed, 13 insertions(+), 8 deletions(-)
diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml
index fa00834ce..54d7de1bb 100644
--- a/.github/workflows/cygwin.yml
+++ b/.github/workflows/cygwin.yml
@@ -204,14 +204,18 @@ jobs:
windows-s
Only show test output if it fails
Capture all test output in an artifact
Are messages cygwin prints itself also captured? See below.
---
.github/workflows/cygwin.yml | 10 ++
winsup/testsuite/stress/cygstress | 13 -
2 files changed, 18 insertions(+), 5 dele
> stress-ng: 23:25:43.13 debug: [1338] invoked with 'stress-ng -v -M --oomable
> --timestamp --verify --temp-path
> /cygdrive/c/Users/RUNNER~1/AppData/Local/Temp/stress-ng.1237.5.d -t 5
> --log-file /cygdrive/d/a/cygwin/cygwin/logs/clock --clock 2' by user 197108
> 'runneradmin'
> stress-ng: 23
v2:
Only echo the command in dryrun mode
Capture stress-ng stderr and stdout to a file
Normally only show the test output if it fails
Capture all test output in an artifact
---
.github/workflows/cygwin.yml | 10 ++
winsup/testsuite/stress/cygstress | 16 +++-
2 files
Jon Turney wrote:
Don't echo the command being run
OK, but this breaks -n option which is occasionally useful, see below.
Capture stress-ng output to file
Only show test output if it fails
Capture all test output in an artifact
Are messages cygwin prints itself also captured? See
Don't echo the command being run
Capture stress-ng output to file
Only show test output if it fails
Capture all test output in an artifact
---
.github/workflows/cygwin.yml | 10 ++
winsup/testsuite/stress/cygstress | 13 -
2 files changed, 18 insertions(+), 5 dele
> stress-ng: 23:25:43.13 debug: [1338] invoked with 'stress-ng -v -M --oomable
> --timestamp --verify --temp-path
> /cygdrive/c/Users/RUNNER~1/AppData/Local/Temp/stress-ng.1237.5.d -t 5
> --log-file /cygdrive/d/a/cygwin/cygwin/logs/clock --clock 2' by user 197108
> 'runneradmin'
> stress-ng: 23
;
> --
> Regards,
> Christian
>
> From a9438be956dc81ac237ef70f9c07934ba4906dae Mon Sep 17 00:00:00 2001
> From: Christian Franke
> Date: Sat, 29 Mar 2025 16:34:33 +0100
> Subject: [PATCH] Cygwin: faq: add test of fork/exec slowdown by anti-virus
>
> Signed-off-by: Chr
Mon Sep 17 00:00:00 2001
From: Christian Franke
Date: Sat, 29 Mar 2025 16:34:33 +0100
Subject: [PATCH] Cygwin: faq: add test of fork/exec slowdown by anti-virus
Signed-off-by: Christian Franke
---
winsup/doc/faq-using.xml | 20
1 file changed, 20 insertions(+)
diff --git a
Add the socketpair_full test from [1], fixed by [2], slightly improved by
the addition of a timeout.
This test might perhaps be better named.
This might also serve as an example of how to add new tests.
[1] https://cygwin.com/pipermail/cygwin-developers/2023-July/012640.html
[2] dedbbd74d0a8
Use cygrun to isolate the cygload test from the current DLL, which
allows it to pass.
---
winsup/testsuite/cygrun.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/winsup/testsuite/cygrun.sh b/winsup/testsuite/cygrun.sh
index c82c1872b..bf1d5cc6b 100755
--- a/winsup/testsuite
/winsup/testsuite/Makefile.am
@@ -325,6 +325,9 @@ AM_CPPFLAGS = -I$(srcdir)/libltp/include
AM_LDFLAGS = $(LDFLAGS_FOR_TESTDLL)
LDADD = $(builddir)/libltp.a $(builddir)/../cygwin/binmode.o
$(LDADD_FOR_TESTDLL)
+# additional flags for specific test executables
+winsup_api_devdsp_LDADD = -lwinmm
p 10")
+# * Ensure there is a /usr/bin/ls for tests which use system("ls")
+#
+# copy to avoid all the complexities: hardlink will fail if builddir is on a
+# separate filesystem, symlink would need to be constructed with regard to the
+# mounts of the test installation, and m
After 90236c3a2cf6, the testsuite is failing, as the cygwin0.dll that
the implib testsuite programs are linked with references doesn't exist
anymore.
We don't need to make and link with a specially named DLL, as the cygwin
DLL (for a long time now) takes into consideration the path it's
executing
This still needs some more voudou to actually work.
Also update how-cygtls-works.txt a bit
---
winsup/cygwin/DevDocs/how-cygtls-works.txt | 25 ++
winsup/testsuite/winsup.api/cygload.cc | 22 ---
winsup/testsuite/winsup.api/cygload.exp| 8 ++-
3 fi
please ignore
In winsup.exp, don't consider a command failed if it produced any output
(e.g. if the compiler produced warnings). Instead check the exit code.
---
winsup/testsuite/winsup.api/winsup.exp | 20 +---
1 file changed, 13 insertions(+), 7 deletions(-)
diff --git a/winsup/testsuite/win
feature test print macro makes feature, bit, and flag text comparison
and checking easier;
handle as common former Intel only feature flags also supported on AMD;
change order and some flag names to agree with current Linux
---
winsup/cygwin/fhandler_proc.cc | 421
Hi Ken,
On Sat, 21 Sep 2019 21:58:07 +
Ken Brown wrote:
> On 9/20/2019 6:05 PM, Ken Brown wrote:> I'll make a new test release this
> weekend, or whenever you think it's time.
>
> I'm building a new test release right now. I'll upload it in about 24 hou
Hi Takashi,
On 9/20/2019 6:05 PM, Ken Brown wrote:> I'll make a new test release this
weekend, or whenever you think it's time.
I'm building a new test release right now. I'll upload it in about 24 hours
unless you tell me that you'd like me to wait for further patches.
Ken
rd when PTY is in the legacy mode.
> [PATCH] Cygwin: console: Make console input work in GDB and strace.
I think I've pushed all your patches now.
> I am sorry to submit patches in a short time since last test release.
No problem.
I'll make a new test release this weekend, or whenever you think it's time.
Ken
On Dec 22 11:35, Brian Inglis wrote:
> ---
> winsup/doc/etc.postinstall.cygwin-doc.sh | 10 +-
> winsup/doc/etc.preremove.cygwin-doc.sh | 5 +++--
> 2 files changed, 8 insertions(+), 7 deletions(-)
Pushed.
Thanks,
Corinna
--
Corinna Vinschen Please, send mails rega
---
winsup/doc/etc.postinstall.cygwin-doc.sh | 10 +-
winsup/doc/etc.preremove.cygwin-doc.sh | 5 +++--
2 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/winsup/doc/etc.postinstall.cygwin-doc.sh
b/winsup/doc/etc.postinstall.cygwin-doc.sh
index 935bd94e1..de7d9e0c3 100755
-
On Nov 27 22:10, Yaakov Selkowitz wrote:
> http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/limits.h.html
> https://sourceware.org/ml/newlib/2017/msg01133.html
>
> Signed-off-by: Yaakov Selkowitz
> ---
ACK, please push.
Thanks,
Corinna
--
Corinna Vinschen Please, sen
http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/limits.h.html
https://sourceware.org/ml/newlib/2017/msg01133.html
Signed-off-by: Yaakov Selkowitz
---
winsup/cygwin/include/limits.h | 30 --
1 file changed, 28 insertions(+), 2 deletions(-)
diff --git a/winsup
On Sep 26 20:36, Yaakov Selkowitz wrote:
> herror etc. are MISC, rcmd etc. are BSD, addrinfo functions are
> POSIX.1-2001, except for IDN functionality which is GNU.
>
> Signed-off-by: Yaakov Selkowitz
> ---
> winsup/cygwin/include/netdb.h | 26 --
> 1 file changed, 24 in
herror etc. are MISC, rcmd etc. are BSD, addrinfo functions are
POSIX.1-2001, except for IDN functionality which is GNU.
Signed-off-by: Yaakov Selkowitz
---
winsup/cygwin/include/netdb.h | 26 --
1 file changed, 24 insertions(+), 2 deletions(-)
diff --git a/winsup/cygwin
On Jun 13 15:01, Yaakov Selkowitz wrote:
> This should match newlib's .
>
> Signed-off-by: Yaakov Selkowitz
> ---
> winsup/cygwin/include/cygwin/signal.h | 26 +-
> 1 file changed, 25 insertions(+), 1 deletion(-)
ACK
Thanks,
Corinna
--
Corinna Vinschen
This should match newlib's .
Signed-off-by: Yaakov Selkowitz
---
winsup/cygwin/include/cygwin/signal.h | 26 +-
1 file changed, 25 insertions(+), 1 deletion(-)
diff --git a/winsup/cygwin/include/cygwin/signal.h
b/winsup/cygwin/include/cygwin/signal.h
index f30499505..70
Will this bounce again?
As a Cygwin-specific header, there is no need to guard functions based on
capability macros. Instead, guard several blocks based on additions or
removals in later versions of POSIX.1, along with a few which are only
XSI or GNU extensions.
Signed-off-by: Yaakov Selkowitz
---
winsup/cygwin/includ
Am 16.03.2016 um 10:28 schrieb Corinna Vinschen:
On Mar 15 22:40, Thomas Wolff wrote:
Hi Corinna,
here is my updated patch.
Changelog (old format):
Just drop this line from the comment, please. If you send the mail
via git format-patch/git send-email I can simply apply it with git am
including
On Mar 16 23:08, Thomas Wolff wrote:
> Am 16.03.2016 um 10:28 schrieb Corinna Vinschen:
> >On Mar 15 22:40, Thomas Wolff wrote:
> >>Hi Corinna,
> >>here is my updated patch.
> >>>Changelog (old format):
> >>>Just drop this line from the comment, please. If you send the mail
> >>>via git format-pat
On Mar 15 22:40, Thomas Wolff wrote:
> Hi Corinna,
> here is my updated patch.
> >Changelog (old format):
> >Just drop this line from the comment, please. If you send the mail
> >via git format-patch/git send-email I can simply apply it with git am
> >including the entire text in the git log.
> I
Hi Corinna,
here is my updated patch.
Changelog (old format):
Just drop this line from the comment, please. If you send the mail
via git format-patch/git send-email I can simply apply it with git am
including the entire text in the git log.
I hope the comment format is OK now, I cannot currently
Hi Thomas,
Thanks for the patch. I have a few comments, though.
On Mar 15 14:16, Thomas Wolff wrote:
> On 13.03.2016, Corinna Vinschen wrote:
> >- Make buffered console characters visible to select().
> > Addresses: https://cygwin.com/ml/cygwin/2014-12/msg00118.html
> Triggered by this change
On 13.03.2016, Corinna Vinschen wrote:
- Make buffered console characters visible to select().
Addresses: https://cygwin.com/ml/cygwin/2014-12/msg00118.html
Triggered by this change, I thought I'd revisit an old problem
(https://cygwin.com/ml/cygwin-patches/2012-q3/msg00019.html),
and in fac
On Jul 5 19:11, Jon TURNEY wrote:
> Fedora installs docbook2texi under the name db2x_docbook2texi
> Other distros and Cygwin install docbook2texi under the name docbook2x-texi
>
> Add a configure test to find either.
>
> 2015-07-05 Jon Turney
>
> * con
Fedora installs docbook2texi under the name db2x_docbook2texi
Other distros and Cygwin install docbook2texi under the name docbook2x-texi
Add a configure test to find either.
2015-07-05 Jon Turney
* configure.ac: Add check for DOCBOOK2XTEXI
* configure: Regenerate
On Sat, Aug 27, 2005 at 09:58:47PM +0200, Bas van Gompel wrote:
>(I'm still getting errors on the following testcase after applying
>this. (try 0 err=7439xxx))
This is now fixed in CVS, btw. I had a typo in cygwin.din where I had
readdir_r = readdir. I discovered this by single stepping into th
On Sun, Aug 28, 2005 at 11:22:30PM +0200, Bas van Gompel wrote:
>Op Sun, 28 Aug 2005 13:16:44 -0400 schreef Christopher Faylor
>in <[EMAIL PROTECTED]>:
>: On Sat, Aug 27, 2005 at 09:58:47PM +0200, Bas van Gompel wrote:
>: > If you want to see why this really does not require a copyright-
>: > assi
Op Sun, 28 Aug 2005 13:16:44 -0400 schreef Christopher Faylor
in <[EMAIL PROTECTED]>:
: On Sat, Aug 27, 2005 at 09:58:47PM +0200, Bas van Gompel wrote:
: > If you want to see why this really does not require a copyright-
: > assignment, view the diff with testsuite/winsup.api/ltp/readdir01.c,
: >
On Sat, Aug 27, 2005 at 09:58:47PM +0200, Bas van Gompel wrote:
>If you want to see why this really does not require a copyright-
>assignment, view the diff with testsuite/winsup.api/ltp/readdir01.c,
>and remove all parts which are just comments.
Btw, you can't just grab someone else's source code
On Sat, Aug 27, 2005 at 09:58:47PM +0200, Bas van Gompel wrote:
>2005-08-27 Bas van Gompel <[EMAIL PROTECTED]>
>
> *dir.cc (readdir_r): Invert sense on error-test.
Applied. Thanks.
cgf
Invert sense on error-test.
Index: src/winsup/cygwin/dir.cc
===
RCS file: /cvs/src/src/winsup/cygwin/dir.cc,v
retrieving revision 1.91
diff -u -p -r1.91 dir.cc
--- src/winsup/cygwin/dir.cc23 Aug 2005 03:58:04 - 1.91
+++ s
Brian Dessent wrote:
> > Let me say it again. This is not new behavior:
> >
> > 2003-08-05 Pavel Tsekov
> >
> > * path.cc (cygdrive_getmntent): Do not skip over drives of type
> > DRIVE_REMOVABLE.
> >
> > Perhaps you should be discussing this with Pavel.
>
> Okay, I misunderst
On Mar 23 23:14, Gerd Spalink wrote:
> Hello,
>
> This is the modified test for the /dev/dsp device.
Cool, especially the final okay ;-)
I've applied it.
Thanks,
Corinna
--
Corinna Vinschen Please, send mails regarding Cygwin to
Cy
cgf wrote:
On Tue, Mar 23, 2004 at 12:09:33PM +0100, Corinna Vinschen wrote:
Chris, do you have a personally approved set of indent options which
give a useful result, perhaps?
No, I don't use indent very often.
Gdb has an indent script, though. I've attached it to this message. I
can't conf
On Tue, Mar 23, 2004 at 12:09:33PM +0100, Corinna Vinschen wrote:
>Chris, do you have a personally approved set of indent options which
>give a useful result, perhaps?
No, I don't use indent very often.
Gdb has an indent script, though. I've attached it to this message. I
can't confirm or deny
On Mar 22 21:47, Gerd Spalink wrote:
> > [From now on, the tests make *no* sound]
> >
> This is correct, since the following are the tests for audio
> recording. They record whatever is at your currently
> selected analog audio source (could be MIC, LINE, CD),
> and silently ignore the recorded
Please find my answers inserted below.
On Monday, March 22, 2004 6:06 PM, Corinna Vinschen [SMTP:[EMAIL PROTECTED] wrote:
> On Mar 21 22:55, Gerd Spalink wrote:
> > There were no comments about the test program I sent. Do you want to
> > put it or something like it into the rep
The attached program ratchets through the bitrates defined in termios.h and
tests a given (as first argument) serial port. This test will indicate if
tcsetattr() returns an error when invalid bitrates are attempted on a given
serial port (along with perror() to print the error-message associated
On Sat, 2003-01-11 at 03:30, Christopher Faylor wrote:
> On Fri, Jan 10, 2003 at 10:46:19AM +0100, Thomas Pfaff wrote:
> >Attached are test cases for the cancellation patches.
>
> Thomas,
> You should feel free to check in test cases after submitting them here.
Yeah - CVS track
On Fri, Jan 10, 2003 at 10:46:19AM +0100, Thomas Pfaff wrote:
>Attached are test cases for the cancellation patches.
Thomas,
You should feel free to check in test cases after submitting them here.
cgf
Attached are test cases for the cancellation patches.
Thomas
pthreads-test.tar.gz
Description: GNU Zip compressed data
It would be really nice (tm, (c), patent pending) if someone would
submit some pthread additions to the cygwin test suite.
Maybe there are some out there on the internet somewhere that can be
adapted?
*Any* new test suite additions would be a really nice thing for cygwin,
in fact.
cgf
> -Original Message-
> From: Christopher Faylor [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, May 02, 2002 2:16 PM
> To: [EMAIL PROTECTED]
> Subject: Re: IPC test suite
>
>
> On Wed, Mar 06, 2002 at 12:04:06AM +1100, Robert Collins wrote:
> >AFAIC
On Wed, Mar 06, 2002 at 12:04:06AM +1100, Robert Collins wrote:
>AFAICT I'm now testing every aspect (barring multi-userid support) of
>sys/ipc.h and sys/shm.h functionality. And the cygwin is passing. The
>multi-userid support should be present and correct though.
>
>So.. for the brave, here t
Well,
AFAICT I'm now testing every aspect (barring multi-userid support)
of sys/ipc.h and sys/shm.h functionality. And the cygwin is passing. The
multi-userid support should be present and correct though.
So.. for the brave, here tis.
Rob
ipctest-0.1.3.tar.gz
Description: GNU Zip compress
87 matches
Mail list logo