Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit ee90a54

Browse files
add BLUEPRINT_PLACEHOLDER_PROOF_GEN argument to some tests
1 parent 8f3a946 commit ee90a54

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

test/CMakeLists.txt

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ macro(define_blueprint_test test)
2222

2323
set(TEST_RESULTS_DIR "${CMAKE_CURRENT_BINARY_DIR}/junit_results")
2424
set(TEST_LOGS_DIR "${TEST_RESULTS_DIR}/logs")
25-
set(additional_args "--log_format=JUNIT"
25+
set(additional_args ${ARGV2} "--log_format=JUNIT"
2626
"--log_sink=${TEST_LOGS_DIR}/${full_test_name}.xml")
2727

2828
cm_test(NAME ${full_test_name} SOURCES ${test}.cpp ARGS ${additional_args})
@@ -69,8 +69,6 @@ set(NON_NATIVE_TESTS_FILES
6969
"algebra/fields/plonk/non_native/bit_decomposition"
7070
"algebra/fields/plonk/non_native/bit_composition"
7171
"algebra/fields/plonk/non_native/bit_shift_constant"
72-
"algebra/fields/plonk/non_native/logic_ops"
73-
"algebra/fields/plonk/non_native/lookup_logic_ops"
7472
"algebra/fields/plonk/non_native/comparison_checked"
7573
"algebra/fields/plonk/non_native/comparison_unchecked"
7674
"algebra/fields/plonk/non_native/comparison_flag"
@@ -81,6 +79,11 @@ set(NON_NATIVE_TESTS_FILES
8179
"non_native/plonk/scalar_non_native_range"
8280
)
8381

82+
set(NON_NATIVE_TESTS_FILES_WITH_PROOF_GEN
83+
"algebra/fields/plonk/non_native/logic_ops"
84+
"algebra/fields/plonk/non_native/lookup_logic_ops"
85+
)
86+
8487
set(PLONK_TESTS_FILES
8588
"algebra/curves/plonk/variable_base_scalar_mul"
8689
"algebra/curves/plonk/unified_addition"
@@ -226,3 +229,7 @@ SET(ALL_TESTS_FILES
226229
foreach(TEST_FILE ${ALL_TESTS_FILES})
227230
define_blueprint_test(${TEST_FILE})
228231
endforeach()
232+
233+
foreach(TEST_FILE ${NON_NATIVE_TESTS_FILES_WITH_PROOF_GEN})
234+
define_blueprint_test(${TEST_FILE} ARGS "-DBLUEPRINT_PLACEHOLDER_PROOF_GEN=True")
235+
endforeach()

0 commit comments

Comments
 (0)