diff --git a/.gitignore b/.gitignore index 46a08d87..7058016a 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ tests/test_new tests/test_create tests/test_sleep tests/test_wait +tests/test_io_new tests/test_cancel_sleep tests/test_cancel_sleep_2 -tests/test_io_new +tests/test_cancel_connect +tests/test_cancel_connect_2 diff --git a/tests/makefile b/tests/makefile index 914c0435..bec3b50b 100644 --- a/tests/makefile +++ b/tests/makefile @@ -8,10 +8,11 @@ TESTS = test_new \ test_create \ test_sleep \ test_wait \ + test_io_new \ test_cancel_sleep \ test_cancel_sleep_2 \ - test_io_new \ - test_io_connect + test_cancel_connect \ + test_cancel_connect_2 all: validate clean $(TESTS) test_new: $(CC) $(CFLAGS) test_new.c $(LFLAGS) -o test_new @@ -21,14 +22,16 @@ test_sleep: $(CC) $(CFLAGS) test_sleep.c $(LFLAGS) -o test_sleep test_wait: $(CC) $(CFLAGS) test_wait.c $(LFLAGS) -o test_wait +test_io_new: + $(CC) $(CFLAGS) test_io_new.c $(LFLAGS) -o test_io_new test_cancel_sleep: $(CC) $(CFLAGS) test_cancel_sleep.c $(LFLAGS) -o test_cancel_sleep test_cancel_sleep_2: $(CC) $(CFLAGS) test_cancel_sleep_2.c $(LFLAGS) -o test_cancel_sleep_2 -test_io_new: - $(CC) $(CFLAGS) test_io_new.c $(LFLAGS) -o test_io_new -test_io_connect: - $(CC) $(CFLAGS) test_io_connect.c $(LFLAGS) -o test_io_connect +test_cancel_connect: + $(CC) $(CFLAGS) test_cancel_connect.c $(LFLAGS) -o test_cancel_connect +test_cancel_connect_2: + $(CC) $(CFLAGS) test_cancel_connect_2.c $(LFLAGS) -o test_cancel_connect_2 validate: @if [ ! -f $(LFLAGS_LIB) ]; then \ echo ""; \ diff --git a/tests/test_io_connect.c b/tests/test_cancel_connect.c similarity index 100% rename from tests/test_io_connect.c rename to tests/test_cancel_connect.c diff --git a/tests/test_io_connect_2.c b/tests/test_cancel_connect_2.c similarity index 100% rename from tests/test_io_connect_2.c rename to tests/test_cancel_connect_2.c diff --git a/tests/test_io_connect b/tests/test_io_connect deleted file mode 100755 index f14be532..00000000 Binary files a/tests/test_io_connect and /dev/null differ