aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/property-assignment-in-failed-module/modules/m/m.qbs
blob: 38b15d8073da3c9776cb967e3f5ac046bf3fd3bb (plain)
1
2
3
4
5
6
7
8
9
10
11
import qbs

Module {
    property bool doFail
    Depends { name: "cpp" }
    cpp.dynamicLibraries: ["nosuchlib"]
    validate: {
        if (doFail)
            throw "Failure!";
    }
}