Skip to content

Commit 76a9484

Browse files
committed
update tasks
1 parent de8a1bd commit 76a9484

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -804,31 +804,31 @@ tasks:
804804
OCSP_ALGORITHM: ecdsa
805805
OCSP_SERVER_TYPE: valid
806806
TEST_NAME: ocsp
807-
tags: [ocsp, ocsp-ecdsa, ocsp-staple]
807+
tags: [ocsp, ocsp-ecdsa]
808808
- name: test-ocsp-ecdsa-basic-tls-ocsp-mustStaple-disableStapling-revoked
809809
commands:
810810
- func: run tests
811811
vars:
812812
OCSP_ALGORITHM: ecdsa
813813
OCSP_SERVER_TYPE: revoked
814814
TEST_NAME: ocsp
815-
tags: [ocsp, ocsp-ecdsa, ocsp-staple]
815+
tags: [ocsp, ocsp-ecdsa]
816816
- name: test-ocsp-ecdsa-basic-tls-ocsp-mustStaple-disableStapling-valid-delegate
817817
commands:
818818
- func: run tests
819819
vars:
820820
OCSP_ALGORITHM: ecdsa
821821
OCSP_SERVER_TYPE: valid-delegate
822822
TEST_NAME: ocsp
823-
tags: [ocsp, ocsp-ecdsa, ocsp-staple]
823+
tags: [ocsp, ocsp-ecdsa]
824824
- name: test-ocsp-ecdsa-basic-tls-ocsp-mustStaple-disableStapling-revoked-delegate
825825
commands:
826826
- func: run tests
827827
vars:
828828
OCSP_ALGORITHM: ecdsa
829829
OCSP_SERVER_TYPE: revoked-delegate
830830
TEST_NAME: ocsp
831-
tags: [ocsp, ocsp-ecdsa, ocsp-staple]
831+
tags: [ocsp, ocsp-ecdsa]
832832
- name: test-ocsp-ecdsa-basic-tls-ocsp-mustStaple-disableStapling-no-responder
833833
commands:
834834
- func: run server
@@ -840,7 +840,7 @@ tasks:
840840
OCSP_ALGORITHM: ecdsa
841841
OCSP_SERVER_TYPE: no-responder
842842
TEST_NAME: ocsp
843-
tags: [ocsp, ocsp-ecdsa, ocsp-staple]
843+
tags: [ocsp, ocsp-ecdsa]
844844
- name: test-ocsp-ecdsa-basic-tls-ocsp-mustStaple-valid
845845
commands:
846846
- func: run tests
@@ -892,31 +892,31 @@ tasks:
892892
OCSP_ALGORITHM: rsa
893893
OCSP_SERVER_TYPE: valid
894894
TEST_NAME: ocsp
895-
tags: [ocsp, ocsp-rsa, ocsp-staple]
895+
tags: [ocsp, ocsp-rsa]
896896
- name: test-ocsp-rsa-basic-tls-ocsp-mustStaple-disableStapling-revoked
897897
commands:
898898
- func: run tests
899899
vars:
900900
OCSP_ALGORITHM: rsa
901901
OCSP_SERVER_TYPE: revoked
902902
TEST_NAME: ocsp
903-
tags: [ocsp, ocsp-rsa, ocsp-staple]
903+
tags: [ocsp, ocsp-rsa]
904904
- name: test-ocsp-rsa-basic-tls-ocsp-mustStaple-disableStapling-valid-delegate
905905
commands:
906906
- func: run tests
907907
vars:
908908
OCSP_ALGORITHM: rsa
909909
OCSP_SERVER_TYPE: valid-delegate
910910
TEST_NAME: ocsp
911-
tags: [ocsp, ocsp-rsa, ocsp-staple]
911+
tags: [ocsp, ocsp-rsa]
912912
- name: test-ocsp-rsa-basic-tls-ocsp-mustStaple-disableStapling-revoked-delegate
913913
commands:
914914
- func: run tests
915915
vars:
916916
OCSP_ALGORITHM: rsa
917917
OCSP_SERVER_TYPE: revoked-delegate
918918
TEST_NAME: ocsp
919-
tags: [ocsp, ocsp-rsa, ocsp-staple]
919+
tags: [ocsp, ocsp-rsa]
920920
- name: test-ocsp-rsa-basic-tls-ocsp-mustStaple-disableStapling-no-responder
921921
commands:
922922
- func: run server
@@ -928,7 +928,7 @@ tasks:
928928
OCSP_ALGORITHM: rsa
929929
OCSP_SERVER_TYPE: no-responder
930930
TEST_NAME: ocsp
931-
tags: [ocsp, ocsp-rsa, ocsp-staple]
931+
tags: [ocsp, ocsp-rsa]
932932
- name: test-ocsp-rsa-basic-tls-ocsp-disableStapling-valid
933933
commands:
934934
- func: run tests

.evergreen/scripts/generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@ def _create_ocsp_task(file_name, server_type):
895895
test_func = FunctionCall(func="run tests", vars=vars)
896896

897897
tags = ["ocsp", f"ocsp-{algo}"]
898-
if "mustStaple" in file_name:
898+
if "disableStapling" not in file_name:
899899
tags.append("ocsp-staple")
900900

901901
name = file_name.replace(".json", "")

0 commit comments

Comments
 (0)