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 07a69c5 commit 9a342b9Copy full SHA for 9a342b9
1 file changed
src/build.d
@@ -226,6 +226,12 @@ alias autoTesterBuild = makeDep!((builder, dep) {
226
227
version (Posix)
228
dep.deps ~= runCxxUnittest;
229
+
230
+ // unittests are currently not executed for auto-tester-test on windows and
231
+ // adding them requires more changes (see https://github.com/dlang/dmd/pull/7414).
232
+ // This requires no further actions and avoids building druntime+phobos on unittest failure
233
+ version (Windows)
234
+ dep.deps ~= runDmdUnittest;
235
});
236
237
/// Returns: the dependency that builds the lexer object file
0 commit comments