Skip to content
Open
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
4 changes: 4 additions & 0 deletions tests/ci/common_posix_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,10 @@ function build_openssl {
./config --prefix="${install_dir}/openssl-${branch}" --openssldir="${install_dir}/openssl-${branch}" -d
make "-j${NUM_CPU_THREADS}" > /dev/null
make install_sw

# Copy openssl.cnf to openssldir
cp "${scratch_folder}/openssl-${branch}/apps/openssl.cnf" "${install_dir}/openssl-${branch}/openssl.cnf"

popd
rm -rf "${scratch_folder}/openssl-${branch}"
}
Expand Down
1 change: 1 addition & 0 deletions tests/ci/run_openssl_comparison_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export AWSLC_TOOL_PATH="${BUILD_ROOT}/tool-openssl/openssl"
for branch in "${!openssl_branches[@]}"; do
export OPENSSL_TOOL_VERSION="${openssl_versions[$branch]}"
export OPENSSL_TOOL_PATH="${install_dir}/openssl-${branch}/bin/openssl"
export OPENSSL_CONF="${install_dir}/openssl-${branch}/openssl.cnf"
echo "Running ${test} against OpenSSL ${branch}"
LD_LIBRARY_PATH="${install_dir}/openssl-${branch}/${openssl_branches[$branch]}" "${BUILD_ROOT}/tool-openssl/tool_openssl_test"
done
Expand Down
2 changes: 1 addition & 1 deletion tool-openssl/internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ bool X509Tool(const args_list_t &args);


// Req Tool Utilities
bssl::UniquePtr<X509_NAME> parse_subject_name(std::string &subject_string);
bssl::UniquePtr<X509_NAME> ParseSubjectName(std::string &subject_string);


// Rehash tool Utils
Expand Down
Loading
Loading