-
Notifications
You must be signed in to change notification settings - Fork 738
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enabling pipeline E2E tests for dual stack (#2491)
* Dual Stack pipeline addition * Addressing comments, testing ubuntu 22 * Testing new pool * Updating c-utility test * Addressing comments, updating utility, revert tests * Updating other submodules * Bugfix for local sockets * Updating other submodules 2
- Loading branch information
Showing
8 changed files
with
118 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule c-utility
updated
20 files
+27 −0 | CMakeLists.txt | |
+2 −1 | README.md | |
+19 −0 | adapters/httpapi_curl.c | |
+7 −0 | adapters/platform_linux.c | |
+221 −212 | adapters/socketio_berkeley.c | |
+12 −0 | adapters/tlsio_openssl.c | |
+18 −1 | adapters/x509_openssl.c | |
+4 −2 | configs/azure_c_shared_utilityConfig.cmake | |
+4 −0 | inc/azure_c_shared_utility/x509_openssl.h | |
+3 −0 | jenkins/linux_c_option_test.sh | |
+66 −5 | src/dns_resolver_ares.c | |
+25 −2 | src/dns_resolver_sync.c | |
+25 −6 | src/uuid.c | |
+2 −1 | tests/CMakeLists.txt | |
+39 −0 | tests/uuid_ut/uuid_ut.c | |
+3 −3 | tests/x509_openssl_ut/engine/CMakeLists.txt | |
+0 −0 | tests/x509_openssl_ut/engine/main.c | |
+23 −0 | tests/x509_openssl_ut/no_engine/CMakeLists.txt | |
+11 −0 | tests/x509_openssl_ut/no_engine/main.c | |
+55 −1 | tests/x509_openssl_ut/x509_openssl_ut.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash | ||
# Copyright (c) Microsoft. All rights reserved. | ||
# Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
set -x # Set trace on | ||
set -o errexit # Exit if command failed | ||
set -o nounset # Exit if variable not set | ||
set -o pipefail # Exit if pipe failed | ||
|
||
# Print version | ||
cat /etc/*release | grep VERSION* | ||
gcc --version | ||
openssl version | ||
curl --version | ||
|
||
build_root=$(cd "$(dirname "$0")/.." && pwd) | ||
cd $build_root | ||
|
||
# -- C -- | ||
./build_all/linux/build.sh --run-unittests --run_valgrind --run-e2e-tests --provisioning --use-hsmsymmkey --use-hsmsas --use-hsmx509 --use-edge-modules --use-ipv6-dualstack --config Debug "$@" #-x | ||
[ $? -eq 0 ] || exit $? |