mirror of https://github.com/yandex/odyssey.git
flint: rename connect tests
This commit is contained in:
parent
647f3ab78d
commit
8a0ed658ae
|
@ -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
|
||||
|
|
|
@ -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.
Loading…
Reference in New Issue