Skip to content

Commit 6591188

Browse files
committed
test: fix some comments
1 parent 1abde2b commit 6591188

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

pytools/idfx_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ def __init__ (self, current_test_file, name=""):
121121
help="Make a fake run by just logging the actions to validate that we generate same command over refactoring.",
122122
action="store_true")
123123

124+
# this option is not used directly by direct users of idfxTest but by idx_test_gen
124125
parser.add_argument("-subdir",
125126
default="./test",
126127
help="Select the test in the given subdir not to run all.",
@@ -308,7 +309,7 @@ def clean(self):
308309
shutil.rmtree(self.buildDir)
309310

310311
# remove previous build configuration cache in the test itself
311-
# otherwise cmake take in in the build subdir
312+
# otherwise cmake takes it in the build subdir
312313
testDirCMakeCache = os.path.join(self.testDir, "CMakeCache.txt")
313314
if os.path.exists(testDirCMakeCache):
314315
os.unlink(testDirCMakeCache)

0 commit comments

Comments
 (0)