Home
last modified time | relevance | path

Searched full:ctest (Results 1 – 25 of 184) sorted by relevance

12345678

/external/eigen/scripts/
Dcheck.in2 # check : shorthand for make and ctest -R
10 echo " The EIGEN_CTEST_ARGS environment variable allows to pass args to 'ctest'."
11 echo " For example, with CTest 2.8, you can use EIGEN_CTEST_ARGS='-j5'."
17 ./buildtests.sh "$1" && ctest -R "$1" ${EIGEN_CTEST_ARGS}
19 ./buildtests.sh "$1" && ctest -R "$1"
/external/cn-cbor/test/
Dctest.h31 struct ctest { struct
49 #define __Test_Section __attribute__ ((unused,section ("__DATA, .ctest"))) argument
51 #define __Test_Section __attribute__ ((unused,section (".ctest")))
55 struct ctest __TNAME(sname, tname) __Test_Section = { \
98 #define CTEST(sname, tname) __CTEST_INTERNAL(sname, tname, 0) macro
161 typedef int (*filter_func)(struct ctest*);
181 static CTEST(suite, test) { } in CTEST() function
300 static int suite_all(struct ctest* t) { in suite_all()
305 static int suite_filter(struct ctest* t) { in suite_filter()
326 static void *find_symbol(struct ctest *test, const char *fname) in find_symbol()
[all …]
Dcbor_test.c14 #include "ctest.h"
51 CTEST(cbor, error) in CTEST() function
66 CTEST(cbor, parse) in CTEST() function
136 CTEST(cbor, parse_normalize) in CTEST() function
212 CTEST(cbor, fail) in CTEST() function
244 CTEST(cbor, float) in CTEST() function
276 CTEST(cbor, getset) in CTEST() function
322 CTEST(cbor, create) in CTEST() function
374 CTEST(cbor, map_errors) in CTEST() function
386 CTEST(cbor, array) in CTEST() function
[all …]
/external/catch2/docs/
Dcmake-integration.md15 of `TEST_CASE`s in CTest
41 with automatically registering their `TEST_CASE`s with CTest. They
68 include(CTest)
129 Note that this variable is only available in CTest.
135 associated with the provided target, and registering them via CTest's
151 include(CTest)
166 class name to the test name in CTest. Defaults to `ON`.
168 name to the test name in CTest. Defaults to `ON`.
/external/eigen/bench/btl/
DREADME17 BTL uses cmake / ctest:
28 3 - run the bench using ctest:
30 $ ctest -V
33 ctest -V -R <regexp>
35 ctest -V -R eigen2
38 BTL_CONFIG="-a action1{:action2}*" ctest -V
40 BTL_CONFIG="-a axpy:vector_matrix:trisolve:ata" ctest -V -R eigen2
43 BTL_CONFIG="-a axpy:vector_matrix:trisolve:ata --overwrite" ctest -V -R eigen2
/external/python/cpython2/Lib/json/tests/
Dtest_speedups.py1 from json.tests import CTest
9 class TestSpeedups(CTest):
20 class TestDecode(CTest):
33 class TestEncode(CTest):
D__init__.py20 class CTest(unittest.TestCase): class
26 # test PyTest and CTest checking if the functions come from the right module
36 class TestCTest(CTest):
Dtest_default.py1 from json.tests import PyTest, CTest
12 class TestCDefault(TestDefault, CTest): pass
/external/python/cpython3/Lib/test/
Dtest_univnewlines.py33 class CTest: class
94 class CTestCRNewlines(CTest, TestCRNewlines, unittest.TestCase): pass
100 class CTestLFNewlines(CTest, TestLFNewlines, unittest.TestCase): pass
113 class CTestCRLFNewlines(CTest, TestCRLFNewlines, unittest.TestCase): pass
119 class CTestMixedNewlines(CTest, TestMixedNewlines, unittest.TestCase): pass
/external/eigen/cmake/
DEigenConfigureTesting.cmake11 add_custom_target(check COMMAND "ctest")
18 include(CTest)
22 # Overwrite default DartConfiguration.tcl such that ctest can build our unit tests.
23 # Recall that our unit tests are not in the "all" target, so we have to explicitely ask ctest to bu…
/external/python/cpython3/Lib/test/test_json/
Dtest_speedups.py1 from test.test_json import CTest
9 class TestSpeedups(CTest):
21 class TestDecode(CTest):
32 class TestEncode(CTest):
D__init__.py22 class CTest(unittest.TestCase): class
29 # test PyTest and CTest checking if the functions come from the right module
39 class TestCTest(CTest):
Dtest_default.py1 from test.test_json import PyTest, CTest
12 class TestCDefault(TestDefault, CTest): pass
/external/catch2/misc/
DappveyorTestRunScript.bat6 ctest -j 2 -C %CONFIGURATION% -D ExperimentalMemCheck || exit /b !ERRORLEVEL!
10 ctest -j 2 -C %CONFIGURATION% || exit /b !ERRORLEVEL!
14 ctest -j 2 -C %CONFIGURATION% || exit /b !ERRORLEVEL!
/external/catch2/contrib/
DCatch.cmake16 tests, and will create a separate CTest test for each Catch test case. Note
19 However, it provides more fine-grained pass/fail information to CTest, which is
20 usually considered as more beneficial. By default, the CTest test name is the
25 Automatically add tests with CTest by querying the compiled test executable
50 through an external CTest script using the :prop_dir:`TEST_INCLUDE_FILES`
91 Note that this variable is only available in CTest.
/external/google-benchmark/test/
DCMakeLists.txt226 find_program(CTEST ctest)
227 if (GCOV AND LCOV AND GENHTML AND CTEST AND HAVE_CXX_FLAG_COVERAGE)
232 COMMAND ${CTEST} --force-new-ctest-process
257 " ctest: ${CTEST}\n"
/external/libcxx/utils/google-benchmark/test/
DCMakeLists.txt226 find_program(CTEST ctest)
227 if (GCOV AND LCOV AND GENHTML AND CTEST AND HAVE_CXX_FLAG_COVERAGE)
232 COMMAND ${CTEST} --force-new-ctest-process
257 " ctest: ${CTEST}\n"
/external/llvm/utils/unittest/
DCMakeLists.txt8 # ctest. You can select which tests to run using 'ctest -R regex'.
9 # For more options, run 'ctest --help'.
/external/parameter-framework/upstream/ctest/
DCMakeLists.txt29 # Ctest configuration variables must be set BEFORE include(Ctest)
45 include(CTest)
47 # Ctest requires its configuration to be placed at the build root
/external/swiftshader/third_party/SPIRV-Tools/kokoro/scripts/macos/
Dbuild.sh50 echo $(date): Starting ctest...
51 ctest -j4 --output-on-failure --timeout 300
52 echo $(date): ctest completed.
/external/deqp-deps/SPIRV-Tools/kokoro/scripts/macos/
Dbuild.sh50 echo $(date): Starting ctest...
51 ctest -j4 --output-on-failure --timeout 300
52 echo $(date): ctest completed.
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/
DCMakeLists.txt8 # ctest. You can select which tests to run using 'ctest -R regex'.
9 # For more options, run 'ctest --help'.
/external/deqp-deps/SPIRV-Tools/kokoro/shaderc-smoketest/
Dbuild.sh65 echo $(date): Starting ctest...
68 ctest --output-on-failure -j4
70 echo $(date): ctest completed.
/external/swiftshader/third_party/SPIRV-Tools/kokoro/shaderc-smoketest/
Dbuild.sh65 echo $(date): Starting ctest...
68 ctest --output-on-failure -j4
70 echo $(date): ctest completed.
/external/swiftshader/third_party/llvm-7.0/llvm/test/Assembler/
Dsource-filename-backslash.ll7 ; CHECK: source_filename = "C:\5Cpath\5Cwith\5Cbackslashes\5Ctest.cc"
8 source_filename = "C:\5Cpath\5Cwith\5Cbackslashes\5Ctest.cc"

12345678