diff options
author | Micael Karlberg <[email protected]> | 2019-02-26 11:09:07 +0100 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2019-03-01 10:24:51 +0100 |
commit | 02bc08db9e8d4254a5916d0a798a89471923f294 (patch) | |
tree | 700f0ec9e2f238f921c22560020f2353c1a98e8b /erts/emulator/test/Makefile | |
parent | a94b54d45621dd4cb4b66983325493fc2878edc9 (diff) | |
download | otp-02bc08db9e8d4254a5916d0a798a89471923f294.tar.gz otp-02bc08db9e8d4254a5916d0a798a89471923f294.tar.bz2 otp-02bc08db9e8d4254a5916d0a798a89471923f294.zip |
[net|test] Add "proper" test suite
Add a (basically) placeholder test suite for the net module.
OTP-15635
Diffstat (limited to 'erts/emulator/test/Makefile')
-rw-r--r-- | erts/emulator/test/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/erts/emulator/test/Makefile b/erts/emulator/test/Makefile index c2a01b9e71..9e9cc2ead8 100644 --- a/erts/emulator/test/Makefile +++ b/erts/emulator/test/Makefile @@ -46,6 +46,9 @@ SOCKET_MODULES = \ socket_test_ttest_tcp_server_socket \ socket_SUITE +NET_MODULES = \ + net_SUITE + MODULES= \ a_SUITE \ after_SUITE \ @@ -102,6 +105,7 @@ MODULES= \ monitor_SUITE \ multi_load_SUITE \ nested_SUITE \ + $(NET_MODULES) \ nif_SUITE \ node_container_SUITE \ nofrag_SUITE \ @@ -178,6 +182,7 @@ HRL_FILES= \ socket_test_ttest_client.hrl TARGET_FILES = $(MODULES:%=$(EBIN)/%.$(EMULATOR)) +NET_TARGETS = $(NET_MODULES:%=$(EBIN)/%.$(EMULATOR)) SOCKET_TARGETS = $(SOCKET_MODULES:%=$(EBIN)/%.$(EMULATOR)) EMAKEFILE=Emakefile @@ -227,6 +232,7 @@ docs: targets: $(TARGET_FILES) socket_targets: $(SOCKET_TARGETS) +net_targets: $(NET_TARGETS) # ---------------------------------------------------- # Special targets |