summaryrefslogtreecommitdiffstats
path: root/tests/auto/concurrent/qtconcurrentfiltermapgenerated/generator/generator_main.py
blob: 87cb4c7bc403c5dbe0ac15243241ccf12edac8b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright (C) 2020 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

from option_management import function_describing_options, skip_function_description, testcase_describing_options
from generate_testcase import generate_testcase
from helpers import insert_testcases_into_file
filename = "../tst_qtconcurrentfiltermapgenerated.cpp"

testcases = []
counter = 0
for fo in function_describing_options():
    if skip_function_description(fo):
        continue

    if not (
        fo["blocking"]
        and fo["filter"]
        # and not fo["map"]
        and fo["reduce"]
        and not fo["inplace"]
        and not fo["iterators"]
        and not fo["initialvalue"]
        and not fo["pool"]
    ):
        continue

    for to in testcase_describing_options(fo):
        print("generate test")
        testcases.append(generate_testcase(fo, to))
        counter += 1

print(counter)
insert_testcases_into_file(filename, testcases)