Skip to content

Commit

Permalink
[RDK-46381] Fix the networking and command_line_containers related is…
Browse files Browse the repository at this point in the history
…sues
  • Loading branch information
KaleeswaranGnanagurusamy committed Feb 20, 2024
1 parent 520bb3a commit f2bd727
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/L2-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: >
sudo apt update
&&
sudo apt install -y build-essential cmake make git gcc pkgconf libtool libctemplate-dev libjsoncpp-dev libdbus-1-dev libsystemd-dev libyajl-dev libcap-dev go-md2man autoconf automake libseccomp-dev libboost-dev valgrind libcunit1-dev liblog4c-dev libfreetype6-dev libjpeg-dev xorg-dev python3 python3-pip libarchive-dev libcurl4 libcurl4-gnutls-dev libssl-dev libgpgme11-dev libtool-bin libarchive13 bison flex clang valgrind lcov figlet dbus libdbus-glib-1-dev dbus-user-session systemd libpam-systemd gnome-keyring iptables libprotobuf-c-dev
sudo apt install -y build-essential cmake make git gcc pkgconf libtool libctemplate-dev libjsoncpp-dev libdbus-1-dev libsystemd-dev libyajl-dev libcap-dev go-md2man autoconf automake libseccomp-dev libboost-dev valgrind libcunit1-dev liblog4c-dev libfreetype6-dev libjpeg-dev xorg-dev python3 python3-pip libarchive-dev libcurl4 libcurl4-gnutls-dev libssl-dev libgpgme11-dev libtool-bin libarchive13 bison flex clang lcov figlet dbus libdbus-glib-1-dev dbus-user-session systemd libpam-systemd gnome-keyring iptables libprotobuf-c-dev
- name: Set gcc/with-coverage toolchain
if: ${{ matrix.compiler == 'gcc' && matrix.coverage == 'with-coverage' }}
Expand Down
Binary file modified tests/L2_testing/test_runner/bundle/sleepy-thunder_bundle.tar.gz
100755 → 100644
Binary file not shown.
4 changes: 2 additions & 2 deletions tests/L2_testing/test_runner/bundle_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def execute_test():
test_utils.get_bundle_path(test.container_id),
bundle_path])

output = test_utils.create_simple_test_output(test, status.stdout is "", "", status.stdout)
output = test_utils.create_simple_test_output(test, (status.stdout == ""), "", status.stdout)
output_table.append(output)
test_utils.print_single_result(output)

Expand All @@ -82,7 +82,7 @@ def execute_test():
"-rf",
test_utils.get_bundle_path(test.container_id)])

output = test_utils.create_simple_test_output(test, status.stderr is "", "", status.stderr)
output = test_utils.create_simple_test_output(test, (status.stderr == ""), "", status.stderr)
output_table.append(output)
test_utils.print_single_result(output)

Expand Down
3 changes: 1 addition & 2 deletions tests/L2_testing/test_runner/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ def run_all_tests():
test_utils.print_unsupported_platform(test.__name__, test_utils.selected_platform)
# Skipped these tests because they are all failing in the workflow and will be enabled once they are resolved
elif (test_utils.selected_platform == test_utils.Platforms.github_workflow_vm) and \
((test.__name__ == "gui_containers") or (test.__name__ == "network_tests") or
(test.__name__ == "start_from_bundle") or (test.__name__ == "thunder_plugin")):
((test.__name__ == "gui_containers") or (test.__name__ == "network_tests")):
test_utils.print_unsupported_platform(test.__name__, test_utils.selected_platform)
else:
success, total = test.execute_test()
Expand Down

0 comments on commit f2bd727

Please sign in to comment.