We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 662990e commit 659ce73Copy full SHA for 659ce73
1 file changed
src/build.d
@@ -226,6 +226,13 @@ alias autoTesterBuild = makeDep!((builder, dep) {
226
227
version (Posix)
228
dep.deps ~= runCxxUnittest;
229
+
230
+ // unittests are currently not executed as part of `auto-tester-test` on windows
231
+ // because changes to `win32.mak` require additional changes on the autotester
232
+ // (see https://github.com/dlang/dmd/pull/7414).
233
+ // This requires no further actions and avoids building druntime+phobos on unittest failure
234
+ version (Windows)
235
+ dep.deps ~= runDmdUnittest;
236
});
237
238
/// Returns: the dependency that builds the lexer object file
0 commit comments