Skip to content
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

Speed up performance test (fails on slow runners) #6149

Merged
merged 1 commit into from
Mar 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions test/cli/performance_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,11 +212,10 @@ def test_slow_many_scopes(tmpdir):
#define BLOCK16 BLOCK8 BLOCK8
#define BLOCK32 BLOCK16 BLOCK16
#define BLOCK64 BLOCK32 BLOCK32
#define BLOCK128 BLOCK64 BLOCK64
int main() {
char cmp[5];
memset(cmp, '\376', sizeof cmp);
BLOCK128
BLOCK64
return EXIT_SUCCESS;
}""")
cppcheck([filename]) # should not take more than ~1 second
Loading