diff options
author | Fedor Indutny <fedor@indutny.com> | 2016-05-26 00:27:08 -0400 |
---|---|---|
committer | Fedor Indutny <fedor@indutny.com> | 2016-05-26 00:27:08 -0400 |
commit | 5649bb2eeffbd6b7b074e63cf72ae064b10fcd0d (patch) | |
tree | 8101ec65a3b11a0492b6a4c26fbd492e24b05bb3 /test | |
parent | 9b0a792a84b8c6fca6f94c740061bdd46b502290 (diff) | |
download | uv_link_t-5649bb2eeffbd6b7b074e63cf72ae064b10fcd0d.tar.gz |
src: shuffle files around
Diffstat (limited to 'test')
-rw-r--r-- | test/src/test-common.h | 2 | ||||
-rw-r--r-- | test/src/test-uv-link-source-t.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/test/src/test-common.h b/test/src/test-common.h index 10e40a2..1a3e79d 100644 --- a/test/src/test-common.h +++ b/test/src/test-common.h @@ -6,7 +6,7 @@ #include <errno.h> #include "uv.h" -#include "uv_link.h" +#include "uv_link_t.h" #include "test-list.h" diff --git a/test/src/test-uv-link-source-t.c b/test/src/test-uv-link-source-t.c index a1d91df..64ab200 100644 --- a/test/src/test-uv-link-source-t.c +++ b/test/src/test-uv-link-source-t.c @@ -114,6 +114,7 @@ TEST_IMPL(uv_link_source_t) { test_writes(); test_reads(); + uv_link_source_close(&source); uv_close((uv_handle_t*) &pair_right, NULL); CHECK_EQ(close(fds[0]), 0, "close(fds[0])"); |