Changeset e73dbc1 in mainline for uspace/srv/net/tcp/Makefile


Ignore:
Timestamp:
2017-08-31T23:23:55Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1ddbf81
Parents:
94c5bc1
Message:

Add TCP unit tests for segment and seq_no modules. Fix seq_no_segment_acceptable() returning false if receive window is a strict subset of the segment.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/tcp/Makefile

    r94c5bc1 re73dbc1  
    3737BINARY = tcp
    3838
    39 SOURCES = \
     39SOURCES_COMMON = \
    4040        conn.c \
    4141        iqueue.c \
     
    4444        rqueue.c \
    4545        segment.c \
    46         service.c \
    4746        seq_no.c \
    48         tcp.c \
    4947        test.c \
    5048        tqueue.c \
    5149        ucall.c
    5250
     51SOURCES = \
     52        $(SOURCES_COMMON) \
     53        service.c \
     54        tcp.c
     55
    5356TEST_SOURCES = \
    54         pdu.c \
    55         segment.c \
    56         seq_no.c \
     57        $(SOURCES_COMMON) \
    5758        test/main.c \
    58         test/pdu.c
     59        test/pdu.c \
     60        test/segment.c \
     61        test/seq_no.c
    5962
    6063include $(USPACE_PREFIX)/Makefile.common
Note: See TracChangeset for help on using the changeset viewer.