Commit e5022cd0 authored by Kenton Varda's avatar Kenton Varda

Cygwin doesn't have SI_TKILL, fine.

parent 715434d7
...@@ -117,7 +117,9 @@ TEST_F(AsyncUnixTest, SignalsAsync) { ...@@ -117,7 +117,9 @@ TEST_F(AsyncUnixTest, SignalsAsync) {
[&](siginfo_t&& info) { [&](siginfo_t&& info) {
received = true; received = true;
EXPECT_EQ(SIGUSR2, info.si_signo); EXPECT_EQ(SIGUSR2, info.si_signo);
#if __linux__
EXPECT_SI_CODE(SI_TKILL, info.si_code); EXPECT_SI_CODE(SI_TKILL, info.si_code);
#endif
}); });
delay(); delay();
......
linux-gcc-4.7 1632 ./super-test.sh tmpdir capnp-gcc-4.7 quick linux-gcc-4.7 1632 ./super-test.sh tmpdir capnp-gcc-4.7 quick
linux-gcc-4.8 1635 ./super-test.sh tmpdir capnp-gcc-4.8 quick gcc-4.8 linux-gcc-4.8 1635 ./super-test.sh tmpdir capnp-gcc-4.8 quick gcc-4.8
linux-clang 1652 ./super-test.sh tmpdir capnp-clang quick clang linux-clang 1652 ./super-test.sh tmpdir capnp-clang quick clang
mac 758 ./super-test.sh remote beat caffeinate quick mac 765 ./super-test.sh remote beat caffeinate quick
cygwin 769 ./super-test.sh remote Kenton@flashman quick cygwin 769 ./super-test.sh remote Kenton@flashman quick
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment