forked from aws/aws-lc
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
68 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#!/bin/bash -exu | ||
# | ||
# Copyright Amazon.com Inc. or its affiliates. All Rights Reserved. | ||
# SPDX-License-Identifier: Apache-2.0 OR ISC | ||
# | ||
|
||
source tests/ci/common_posix_setup.sh | ||
|
||
# Set up environment. | ||
|
||
# SYS_ROOT | ||
# | | ||
# - SRC_ROOT(aws-lc) | ||
# | | ||
# - SCRATCH_FOLDER | ||
# | | ||
# - tcpdump | ||
# - tcpdump-install | ||
# - AWS_LC_BUILD_FOLDER | ||
# - AWS_LC_INSTALL_FOLDER | ||
|
||
# Assumes script is executed from the root of aws-lc directory | ||
SCRATCH_FOLDER=${SYS_ROOT}/"TCPDUMP_SCRATCH" | ||
TCPDUMP_SRC_FOLDER="${SCRATCH_FOLDER}/tcpdump" | ||
TCPDUMP_INSTALL_FOLDER="${SCRATCH_FOLDER}/tcpdump-install" | ||
AWS_LC_BUILD_FOLDER="${SCRATCH_FOLDER}/aws-lc-build" | ||
AWS_LC_INSTALL_FOLDER="${SCRATCH_FOLDER}/aws-lc-install" | ||
|
||
mkdir -p "${SCRATCH_FOLDER}" | ||
rm -rf "${SCRATCH_FOLDER:?}"/* | ||
|
||
pushd "${SCRATCH_FOLDER}" | ||
|
||
function tcpdump_build() { | ||
autoreconf -fi | ||
./configure --prefix="${TCPDUMP_INSTALL_FOLDER}" --with-openssl="${AWS_LC_INSTALL_FOLDER}" | ||
make -j "${NUM_CPU_THREADS}" | ||
} | ||
|
||
function tcpdump_run_tests() { | ||
make check | ||
make releasecheck | ||
} | ||
|
||
# Get latest tcpdump version. | ||
git clone https://github.com/the-tcpdump-group/tcpdump.git "${TCPDUMP_SRC_FOLDER}" | ||
mkdir -p "${AWS_LC_BUILD_FOLDER}" "${AWS_LC_INSTALL_FOLDER}" "${TCPDUMP_INSTALL_FOLDER}" | ||
ls | ||
|
||
aws_lc_build "${SRC_ROOT}" "${AWS_LC_BUILD_FOLDER}" "${AWS_LC_INSTALL_FOLDER}" | ||
|
||
pushd "${TCPDUMP_SRC_FOLDER}" | ||
tcpdump_build | ||
tcpdump_run_tests | ||
popd | ||
|
||
popd |