From fc9fedef2edef8155e8bc7796c762a37fb95543a Mon Sep 17 00:00:00 2001 From: Nicolas Sarlin Date: Wed, 6 Nov 2024 18:20:01 +0100 Subject: [PATCH] chore(ci): enable safe_serialization tests --- .github/workflows/aws_tfhe_fast_tests.yml | 4 ++-- Makefile | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/aws_tfhe_fast_tests.yml b/.github/workflows/aws_tfhe_fast_tests.yml index 1a05675206..641b39dcce 100644 --- a/.github/workflows/aws_tfhe_fast_tests.yml +++ b/.github/workflows/aws_tfhe_fast_tests.yml @@ -244,9 +244,9 @@ jobs: run: | make test_high_level_api - - name: Run safe deserialization tests + - name: Run safe serialization tests run: | - make test_safe_deserialization + make test_safe_serialization - name: Slack Notification if: ${{ failure() }} diff --git a/Makefile b/Makefile index c2676caeab..4ae68b4c2e 100644 --- a/Makefile +++ b/Makefile @@ -749,10 +749,10 @@ test_signed_integer_multi_bit_ci: install_rs_check_toolchain install_cargo_nexte --cargo-profile "$(CARGO_PROFILE)" --multi-bit --avx512-support "$(AVX512_SUPPORT)" \ --signed-only --tfhe-package "$(TFHE_SPEC)" -.PHONY: test_safe_deserialization # Run the tests for safe deserialization -test_safe_deserialization: install_rs_build_toolchain install_cargo_nextest +.PHONY: test_safe_serialization # Run the tests for safe serialization +test_safe_serialization: install_rs_build_toolchain install_cargo_nextest RUSTFLAGS="$(RUSTFLAGS)" cargo $(CARGO_RS_BUILD_TOOLCHAIN) test --profile $(CARGO_PROFILE) \ - --features=$(TARGET_ARCH_FEATURE),boolean,shortint,integer,internal-keycache -p $(TFHE_SPEC) -- safe_deserialization:: + --features=$(TARGET_ARCH_FEATURE),boolean,shortint,integer,internal-keycache -p $(TFHE_SPEC) -- safe_serialization:: .PHONY: test_integer # Run all the tests for integer test_integer: install_rs_build_toolchain