Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Attempt to Re-enable the TestInetLayerDNS Unit Test #1541

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/build.yaml
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
submodules: true
- name: Bootstrap
run: |
case $BUILD_TYPE in
Expand Down Expand Up @@ -75,4 +75,3 @@ jobs:
# - name: Upload Code Coverage
# if: ${{ contains('main', env.BUILD_TYPE) }}
# run: bash <(curl -s https://codecov.io/bash)

14 changes: 7 additions & 7 deletions src/inet/tests/Makefile.am
Expand Up @@ -142,25 +142,25 @@ else # CHIP_DEVICE_LAYER_TARGET_ESP32
#
# These will NOT be part of the externally-consumable binary SDK.
#
# XXX - At this point TestInetEndPoint and TestInetLayerDNS are stranded
# here until a solution for enabling IPv6 on Linux containers for
# Docker on macOS can be resolved as that test involves
# executing APIs that exercise bind, listen, connect, accept,
# etc. on IPv4 and IPv6 IP end points. When that issue has been
# resolved, move these tests to check_PROGRAMS.
# XXX - At this point TestInetEndPoint is stranded here until a
# solution for enabling IPv6 on Linux containers for Docker
# on macOS can be resolved as that test involves executing
# APIs that exercise bind, listen, connect, accept, etc. on
# IPv4 and IPv6 IP end points. When that issue has been
# resolved, move this test to check_PROGRAMS.

# Build and run these test targets only on standalone device targets
noinst_PROGRAMS = \
TestLwIPDNS \
TestInetEndPoint \
TestInetLayer \
TestInetLayerDNS \
TestInetLayerMulticast \
$(NULL)

check_PROGRAMS += \
TestInetAddress \
TestInetErrorStr \
TestInetLayerDNS \
$(NULL)

endif # CHIP_DEVICE_LAYER_TARGET_ESP32
Expand Down