Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
capnproto
Commits
a70eb0aa
Commit
a70eb0aa
authored
Jun 09, 2019
by
Kenton Varda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Skip test that fails under qemu-user, probably due to a qemu bug.
parent
cf34b937
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
async-io-test.c++
c++/src/kj/async-io-test.c++
+9
-1
No files found.
c++/src/kj/async-io-test.c++
View file @
a70eb0aa
...
...
@@ -336,6 +336,11 @@ TEST(AsyncIo, ScmRightsTruncatedOdd) {
KJ_ASSERT
(
n
==
0
);
}
#if !__aarch64__
// This test fails under qemu-user, probably due to a bug in qemu's syscall emulation rather than
// a bug in the kernel. We don't have a good way to detect qemu so we just skip the test on aarch64
// in general.
TEST
(
AsyncIo
,
ScmRightsTruncatedEven
)
{
// Test that if we send three FDs over a unix socket, but the receiving end only receives two, we
// don't leak the third FD. This is different from the send-two-receive-one case in that
...
...
@@ -421,7 +426,10 @@ TEST(AsyncIo, ScmRightsTruncatedEven) {
}
KJ_ASSERT
(
n
==
0
);
}
#endif
#endif // !__aarch64__
#endif // !_WIN32 && !__CYGWIN__
TEST
(
AsyncIo
,
PipeThread
)
{
auto
ioContext
=
setupAsyncIo
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment