Skip to content

Commit fe92ff7

Browse files
committed
test: ensure cmake does not try to use any cache in the current dir and reconfigure from scratch
1 parent c6e885d commit fe92ff7

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

pytools/idfx_test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ def configure(self,definitionFile=""):
123123
# we will build in ./build-test so problem dir is parent
124124
comm.append("-DIdefix_PROBLEM_DIR="+self.problemDir)
125125

126+
# ensure we do not use a previous build config which can stands in the test directory
127+
comm.append("--fresh")
128+
126129
# add specific options
127130
for opt in self.cmake:
128131
comm.append("-D"+opt)

0 commit comments

Comments
 (0)