-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PIR] fix property overwrite #60225
[PIR] fix property overwrite #60225
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
@@ -96,17 +96,27 @@ function(set_pit_tests_properties) | |||
PIR_OP_TESTS) | |||
foreach(IR_OP_TEST ${PIR_OP_TESTS}) | |||
if(TEST ${IR_OP_TEST}) | |||
set_tests_properties( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will lead to property overwritten by later settings and cause environment variables invaid.
PR types
Bug fixes
PR changes
Others
Description
How many unit tests in white list is covered?
Currently there is 294 files set with environment variables, but the total num should be
num_white_list
+num_relax_list
+num_no_check_list
, which is 354.How many tests are disabled temporarily in this PR?
Others
Pcard-67164