File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -190,11 +190,16 @@ namespace Paths {
190
190
return getArtifactsRootDir (projectContext) / " tests" ;
191
191
}
192
192
fs::path getMakefileDir (const utbot::ProjectContext &projectContext, const fs::path &sourceFilePath) {
193
- return getGeneratedHeaderDir (projectContext, sourceFilePath);
193
+ return getPathDirRelativeToTestDir (projectContext, sourceFilePath);
194
194
}
195
195
fs::path getGeneratedHeaderDir (const utbot::ProjectContext &projectContext, const fs::path &sourceFilePath) {
196
+ return getPathDirRelativeToTestDir (projectContext, sourceFilePath);
197
+ }
198
+
199
+ fs::path getPathDirRelativeToTestDir (const utbot::ProjectContext &projectContext, const fs::path &sourceFilePath) {
196
200
return projectContext.testDirPath / getRelativeDirPath (projectContext, sourceFilePath);
197
201
}
202
+
198
203
fs::path getRecompiledDir (const utbot::ProjectContext &projectContext) {
199
204
return getTmpDir (projectContext) / " recompiled" ;
200
205
}
Original file line number Diff line number Diff line change @@ -295,6 +295,8 @@ namespace Paths {
295
295
296
296
fs::path getGeneratedHeaderDir (const utbot::ProjectContext &projectContext, const fs::path &sourceFilePath);
297
297
298
+ fs::path getPathDirRelativeToTestDir (const utbot::ProjectContext &projectContext, const fs::path &sourceFilePath);
299
+
298
300
fs::path getRecompiledDir (const utbot::ProjectContext &projectContext);
299
301
300
302
fs::path getTestObjectDir (const utbot::ProjectContext &projectContext);
You can’t perform that action at this time.
0 commit comments