From 5dd6d8d569c287d4cfe490b349535357630f6dc4 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 81db5e8ba0..89848e9791 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: Run zk tests run: | diff --git a/Makefile b/Makefile index 80578d1446..02d02b7631 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_zk # Run the tests for the zk module of the TFHE-rs crate test_zk: install_rs_build_toolchain install_cargo_nextest