Fork for workshops

Committer:
JimCarver
Date:
Fri Oct 12 21:22:49 2018 +0000
Revision:
0:6b753f761943
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
JimCarver 0:6b753f761943 1 /*******************************************************************************
JimCarver 0:6b753f761943 2 * Copyright 2016, 2017 ARM Ltd.
JimCarver 0:6b753f761943 3 *
JimCarver 0:6b753f761943 4 * Licensed under the Apache License, Version 2.0 (the "License");
JimCarver 0:6b753f761943 5 * you may not use this file except in compliance with the License.
JimCarver 0:6b753f761943 6 * You may obtain a copy of the License at
JimCarver 0:6b753f761943 7 *
JimCarver 0:6b753f761943 8 * http://www.apache.org/licenses/LICENSE-2.0
JimCarver 0:6b753f761943 9 *
JimCarver 0:6b753f761943 10 * Unless required by applicable law or agreed to in writing, software
JimCarver 0:6b753f761943 11 * distributed under the License is distributed on an "AS IS" BASIS,
JimCarver 0:6b753f761943 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
JimCarver 0:6b753f761943 13 * See the License for the specific language governing permissions and
JimCarver 0:6b753f761943 14 * limitations under the License.
JimCarver 0:6b753f761943 15 *******************************************************************************/
JimCarver 0:6b753f761943 16
JimCarver 0:6b753f761943 17 #include "unity.h"
JimCarver 0:6b753f761943 18 #include "unity_fixture.h"
JimCarver 0:6b753f761943 19 #include "pal.h"
JimCarver 0:6b753f761943 20 #define PAL_RUN_ALL_TESTS 1
JimCarver 0:6b753f761943 21
JimCarver 0:6b753f761943 22 // pal Socket API tests
JimCarver 0:6b753f761943 23 TEST_GROUP_RUNNER(pal_socket)
JimCarver 0:6b753f761943 24 {
JimCarver 0:6b753f761943 25 RUN_TEST_CASE(pal_socket, socketUDPCreationOptionsTest);
JimCarver 0:6b753f761943 26 RUN_TEST_CASE(pal_socket, basicTCPclientSendRecieve);
JimCarver 0:6b753f761943 27 RUN_TEST_CASE(pal_socket, basicUDPclientSendRecieve);
JimCarver 0:6b753f761943 28 RUN_TEST_CASE(pal_socket, basicSocketScenario3);
JimCarver 0:6b753f761943 29 RUN_TEST_CASE(pal_socket, tProvUDPTest);
JimCarver 0:6b753f761943 30 RUN_TEST_CASE(pal_socket, nonBlockingAsyncTest);
JimCarver 0:6b753f761943 31 RUN_TEST_CASE(pal_socket, ServerSocketScenario);
JimCarver 0:6b753f761943 32 RUN_TEST_CASE(pal_socket, socketTCPBufferedSmall);
JimCarver 0:6b753f761943 33 RUN_TEST_CASE(pal_socket, socketTCPBufferedLarge);
JimCarver 0:6b753f761943 34 RUN_TEST_CASE(pal_socket, socketUDPBufferedSmall);
JimCarver 0:6b753f761943 35 RUN_TEST_CASE(pal_socket, socketUDPBufferedLarge);
JimCarver 0:6b753f761943 36 RUN_TEST_CASE(pal_socket, getAddressInfoAsync);
JimCarver 0:6b753f761943 37 RUN_TEST_CASE(pal_socket, keepaliveOn);
JimCarver 0:6b753f761943 38 RUN_TEST_CASE(pal_socket, keepaliveOff);
JimCarver 0:6b753f761943 39 }