Skip to content

Commit c245b4a

Browse files
tests: delete integv1 code (#3685)
* tests: delete integv1 code * update other references to integv1 * copy old integv1 trust store into pem directory * adding newline
1 parent cf07236 commit c245b4a

31 files changed

+6
-5642
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ docs/doxygen/output/
1717
libcrypto-build/*
1818
libcrypto-root
1919
libcrypto-root/*
20-
tests/integration/__pycache__
2120
tests/unit/*_test
2221
tests/fuzz/*_test
2322
tests/fuzz/*.txt

Makefile

-4
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,6 @@ libs:
5959
bin: libs
6060
$(MAKE) -C bin
6161

62-
.PHONY : integration
63-
integration: bin
64-
$(MAKE) -C tests integration
65-
6662
.PHONY : integrationv2
6763
integrationv2: bin
6864
$(MAKE) -C tests integrationv2

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ git clone https://github.com/${YOUR_GITHUB_ACCOUNT_NAME}/s2n-tls.git
1919
cd s2n-tls
2020
2121
# Pick an "env" line from the codebuild/codebuild.config file and run it, in this case choose the openssl-1.1.1 with GCC 9 build
22-
S2N_LIBCRYPTO=openssl-1.1.1 BUILD_S2N=true TESTS=integration GCC_VERSION=9
22+
S2N_LIBCRYPTO=openssl-1.1.1 BUILD_S2N=true TESTS=integrationv2 GCC_VERSION=9
2323
2424
sudo codebuild/bin/s2n_install_test_dependencies.sh
2525
codebuild/bin/s2n_codebuild.sh

codebuild/spec/buildspec_ubuntu_integ_awslc.yml

-63
This file was deleted.

codebuild/spec/buildspec_ubuntu_integ_boringlibre.yml

-58
This file was deleted.

codebuild/spec/buildspec_ubuntu_integ_openssl102.yml

-58
This file was deleted.

codebuild/spec/buildspec_ubuntu_integ_openssl111.yml

-58
This file was deleted.

docker-images/ubuntu/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ARG ZSH_THEME=cypher
1010
ENV GCC_VERSION=${GCC_VERSION} \
1111
BUILD_S2N=true \
1212
S2N_COVERAGE=false \
13-
TESTS=integration \
13+
TESTS=integrationv2 \
1414
LATEST_CLANG=true
1515

1616
# The `s2n_setup_env` assumes bash, not sh
@@ -45,7 +45,7 @@ RUN set -eux; \
4545
# s2n setup\n\
4646
export BUILD_S2N=true\n\
4747
export GCC_VERSION='"$GCC_VERSION"$'\n\
48-
export TESTS=integration\n\
48+
export TESTS=integrationv2\n\
4949
export TEST_DEPS_DIR=/opt/s2n/test-deps\n\
5050
export PATH=$TEST_DEPS_DIR/clang/bin:$PATH\n\
5151
cd /home/s2n-dev/s2n && source /opt/s2n/codebuild/bin/s2n_setup_env.sh\n\
@@ -63,7 +63,7 @@ RUN set -eux; \
6363
export LD_LIBRARY_PATH=""; \
6464
. codebuild/bin/s2n_setup_env.sh; \
6565
export PATH=$TEST_DEPS_DIR/clang/bin:$PATH; \
66-
TESTS=integration codebuild/bin/s2n_install_test_dependencies.sh; \
66+
TESTS=integrationv2 codebuild/bin/s2n_install_test_dependencies.sh; \
6767
TESTS=benchmark codebuild/bin/s2n_install_test_dependencies.sh; \
6868
TESTS=fuzz codebuild/bin/s2n_install_test_dependencies.sh; \
6969
TESTS=unit BUILD_S2N=false S2N_LIBCRYPTO=openssl-1.0.2 codebuild/bin/install_default_dependencies.sh; \

tests/Makefile

-4
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@ libs:
3838
${MAKE} -C testlib
3939
${MAKE} -C LD_PRELOAD
4040

41-
.PHONY : integration
42-
integration:
43-
${MAKE} -C integration
44-
4541
.PHONY : integrationv2
4642
integrationv2:
4743
${MAKE} -C integrationv2

0 commit comments

Comments
 (0)