On Jan 16, 2018 16:33, "Steven Watanabe via Boost-build" <boost-build@lists.boost.org> wrote:
AMDG

On 01/16/2018 01:25 AM, Antony Polukhin via Boost-build wrote:
> Noticed that disabled test https://github.com/boostorg/
> dll/blob/develop/test/Jamfile.v2#L82
> <https://github.com/boost/dll/blob/develop/test/Jamfile.v2#L82> now builds
> on mingw https://ci.appveyor.com/project/apolukhin/boost-dll/
> build/1.64.139-master#L2121
>
> Is my Jamfile wrong?
>

Yes.  Use <target-os>windows.

So to disable test builds on mingw only I have to write

<target-os>windows,<toolset>gcc:<build>no

Instead of the current

<toolset>gcc-mingw:<build>no

Did I get it right?