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

Remove secure_wan test from the list of failing tests #462

Merged
merged 2 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion ddsrouter_test/compose/TEST_XFAIL.list
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
tool.application.ddsrouter.compose.security_secure_wan
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ services:
- ./certs:/certs
environment:
- FASTDDS_DEFAULT_PROFILES_FILE=/configurations/configuration_local0.xml
command: build/fastdds_configuration_example/configuration publisher --interval 100 --samples 90 --profile-participant secure_local_0 --name topic_0
command: build/fastdds_configuration_example/configuration publisher --interval 100 --samples 90 --profile-participant secure_local_pub0 --name topic_0

subscriber_sec_1_0:
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
Expand All @@ -83,7 +83,7 @@ services:
- ./certs:/certs
environment:
- FASTDDS_DEFAULT_PROFILES_FILE=/configurations/configuration_local0.xml
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 15 --timeout 12 --args "--samples 15 --name topic_1 --profile-participant secure_local_0"
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 15 --timeout 12 --args "--samples 15 --name topic_1 --profile-participant secure_local_sub0"


# LAN 1
Expand All @@ -110,7 +110,7 @@ services:
- ./certs:/certs
environment:
- FASTDDS_DEFAULT_PROFILES_FILE=/configurations/configuration_local1.xml
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 15 --timeout 12 --args "--samples 15 --name topic_0 --profile-participant secure_local_1"
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 15 --timeout 12 --args "--samples 15 --name topic_0 --profile-participant secure_local_sub1"

publisher_sec_1_1:
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
Expand All @@ -122,7 +122,7 @@ services:
- ./certs:/certs
environment:
- FASTDDS_DEFAULT_PROFILES_FILE=/configurations/configuration_local1.xml
command: build/fastdds_configuration_example/configuration publisher --interval 100 --samples 90 --profile-participant secure_local_1 --name topic_1
command: build/fastdds_configuration_example/configuration publisher --interval 100 --samples 90 --profile-participant secure_local_pub1 --name topic_1


# LAN 2
Expand Down
Loading