flint: rename connect tests

This commit is contained in:
Dmitry Simonenko 2016-11-25 13:31:06 +03:00
parent 647f3ab78d
commit 8a0ed658ae
5 changed files with 12 additions and 7 deletions

4
.gitignore vendored
View File

@ -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

View File

@ -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 ""; \

Binary file not shown.