Skip to content

Commit bdd1c3c

Browse files
authored
test: Correct misuse of log file argument (#8673)
1 parent a202ae5 commit bdd1c3c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

qa/common/check_valgrind_log.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22

3-
# Copyright 2021-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3+
# Copyright 2021-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
44
#
55
# Redistribution and use in source and binary forms, with or without
66
# modification, are permitted provided that the following conditions
@@ -58,7 +58,7 @@ def check_valgrind_log(log_file):
5858
a list of the leak records as strings
5959
"""
6060

61-
with open(args.input_log_file, "r") as f:
61+
with open(log_file, "r") as f:
6262
logs = f.read()
6363

6464
# Find the pid and start and end of definite leak reports

0 commit comments

Comments
 (0)