doctest

FORK: The fastest feature-rich C++11/14/17/20 single-header testing framework
git clone https://git.neptards.moe/neptards/doctest.git
Log | Files | Refs | README

tests.json (1467B)


      1 {
      2     "compilers": {
      3         "windows": [
      4             " msvc  --debug",
      5             " msvc",
      6             " gcc   --debug",
      7             " gcc"
      8         ],
      9         "linux": [
     10             " gcc   --debug",
     11             " gcc",
     12             " clang --debug",
     13             " clang"
     14         ]
     15     },
     16     "header": [
     17         " compile",
     18         [
     19             ["any",     " --files 200 --tests 0"],
     20             ["any",     " --files 200 --tests 0 --implement"],
     21             ["any",     " --files 200 --tests 0 --implement --header"],
     22             ["any",     " --files 200 --tests 0 --implement --header --disabled"]
     23         ]
     24     ],
     25     "asserts": [
     26         " compile",
     27         [
     28             ["any",     " --header --files 10 --tests 0  --checks 0"],
     29             ["any",     " --header --files 10 --tests 50 --checks 100 --asserts normal"],
     30             ["any",     " --header --files 10 --tests 50 --checks 100 --asserts normal --fast"],
     31             ["doctest", " --header --files 10 --tests 50 --checks 100 --asserts binary"],
     32             ["doctest", " --header --files 10 --tests 50 --checks 100 --asserts binary --fast"],
     33             ["any",     " --header --files 10 --tests 50 --checks 100 --asserts normal --disabled"]
     34         ]
     35     ],
     36     "runtime": [
     37         " runtime",
     38         [
     39             ["any",     " --files 1 --tests 1  --checks 1 --loop-iters 10000000"],
     40             ["any",     " --files 1 --tests 1  --checks 1 --loop-iters 10000000 --info"]
     41         ]
     42     ]
     43 }