Home
last modified time | relevance | path

Searched refs:testset (Results 1 – 25 of 111) sorted by relevance

12345

/third_party/boost/libs/intrusive/test/
Dgeneric_assoc_test.hpp63 assoc_type testset(values.begin(), values.end()); in test_container_from_iterator() local
67 sz_type sz = testset.size(); in test_container_from_iterator()
68 for(it_type b(testset.begin()), e(testset.end()); b != e; ++b) in test_container_from_iterator()
73 BOOST_TEST(&s == &testset); in test_container_from_iterator()
75 BOOST_TEST(testset.size() == (sz-1)); in test_container_from_iterator()
77 BOOST_TEST(testset.size() == sz); in test_container_from_iterator()
96 assoc_type testset (values.begin(), values.begin() + values.size()); in test_insert_erase_burst() local
97 TEST_INTRUSIVE_SEQUENCE_EXPECTED(testset, testset.begin()); in test_insert_erase_burst()
98 testset.check(); in test_insert_erase_burst()
99 iterator it(testset.begin()), itend(testset.end()); in test_insert_erase_burst()
[all …]
Dgeneric_set_test.hpp59 set_type testset(values.begin(), values.end()); in test_all() local
60 test::test_container(testset); in test_all()
61 testset.clear(); in test_all()
62 testset.insert(values.begin(), values.end()); in test_all()
63 test::test_common_unordered_and_associative_container(testset, values); in test_all()
64 testset.clear(); in test_all()
65 testset.insert(values.begin(), values.end()); in test_all()
66 test::test_associative_container(testset, values); in test_all()
67 testset.clear(); in test_all()
68 testset.insert(values.begin(), values.end()); in test_all()
[all …]
Dgeneric_multiset_test.hpp52 multiset_type testset(values.begin(), values.end()); in test_all() local
53 test::test_container(testset); in test_all()
54 testset.clear(); in test_all()
55 testset.insert(values.begin(), values.end()); in test_all()
56 test::test_common_unordered_and_associative_container(testset, values); in test_all()
57 testset.clear(); in test_all()
58 testset.insert(values.begin(), values.end()); in test_all()
59 test::test_associative_container(testset, values); in test_all()
60 testset.clear(); in test_all()
61 testset.insert(values.begin(), values.end()); in test_all()
[all …]
Dunordered_test.hpp57 unordered_type testset in test_all() local
59 testset.insert(values.begin(), values.end()); in test_all()
60 test::test_container(testset); in test_all()
61 testset.clear(); in test_all()
62 testset.insert(values.begin(), values.end()); in test_all()
63 test::test_common_unordered_and_associative_container(testset, values); in test_all()
64 testset.clear(); in test_all()
65 testset.insert(values.begin(), values.end()); in test_all()
66 test::test_unordered_associative_container(testset, values); in test_all()
67 testset.clear(); in test_all()
[all …]
/third_party/unity/test/tests/
Dtest_generate_test_runner.rb1228 RUNNER_TESTS.each do |testset|
1229 basename = File.basename(testset[:testfile], C_EXTENSION)
1230 testset_name = "Runner_#{basename}_#{testset[:name]}"
1232 runner_name = OUT_FILE + testset[:name] + '_runner.c'
1236 if (testset[:yaml])
1237 File.open("build/runner_options.yml",'w') {|f| f << { :unity => testset[:yaml] }.to_yaml }
1242 if (testset[:cmdline])
1243 …str = "ruby ../auto/generate_test_runner.rb #{yaml_option} #{testset[:cmdline]} \"#{testset[:testf…
1246 UnityTestRunnerGenerator.new(testset[:options]).run(testset[:testfile], runner_name)
1250 …if (runner_test(testset[:testfile], runner_name, testset[:expected], testset[:testdefines], testse…
/third_party/cJSON/tests/unity/test/tests/
Dtest_generate_test_runner.rb1220 RUNNER_TESTS.each do |testset|
1221 basename = File.basename(testset[:testfile], C_EXTENSION)
1222 testset_name = "Runner_#{basename}_#{testset[:name]}"
1224 runner_name = OUT_FILE + testset[:name] + '_runner.c'
1228 if (testset[:yaml])
1229 File.open("build/runner_options.yml",'w') {|f| f << { :unity => testset[:yaml] }.to_yaml }
1234 if (testset[:cmdline])
1235 …str = "ruby ../auto/generate_test_runner.rb #{yaml_option} #{testset[:cmdline]} \"#{testset[:testf…
1238 UnityTestRunnerGenerator.new(testset[:options]).run(testset[:testfile], runner_name)
1242 …if (runner_test(testset[:testfile], runner_name, testset[:expected], testset[:testdefines], testse…
/third_party/boost/libs/geometry/index/test/rtree/interprocess/
Dtest_interprocess.hpp34 namespace testset { namespace interprocess { namespace
49 testset::modifiers<Indexable>(parameters, shmem_alloc(segment.get_segment_manager())); in modifiers()
65 testset::queries<Indexable>(parameters, shmem_alloc(segment.get_segment_manager())); in queries()
81 testset::additional<Indexable>(parameters, shmem_alloc(segment.get_segment_manager())); in additional()
97 testset::modifiers<Indexable>(parameters, shmem_alloc(segment.get_segment_manager())); in modifiers_and_additional()
98 testset::additional<Indexable>(parameters, shmem_alloc(segment.get_segment_manager())); in modifiers_and_additional()
Drtree_interprocess_linear.cpp16 testset::interprocess::modifiers_and_additional<P2f>(bgi::linear<32, 8>()); in test_main()
Drtree_interprocess_linear_dyn.cpp16 testset::interprocess::modifiers_and_additional<P2f>(bgi::dynamic_linear(32, 8)); in test_main()
Drtree_interprocess_rstar_dyn.cpp16 testset::interprocess::modifiers_and_additional<P2f>(bgi::dynamic_rstar(32, 8)); in test_main()
Drtree_interprocess_quadratic_dyn.cpp16 testset::interprocess::modifiers_and_additional<P2f>(bgi::dynamic_quadratic(32, 8)); in test_main()
Drtree_interprocess_quadratic.cpp16 testset::interprocess::modifiers_and_additional<P2f>(bgi::quadratic<32, 8>()); in test_main()
Drtree_interprocess_rstar.cpp16 testset::interprocess::modifiers_and_additional<P2f>(bgi::rstar<32, 8>()); in test_main()
/third_party/vk-gl-cts/scripts/
Drun_nightly.py87 …def __init__(self, name, buildConfig, generator, binaryName, testset, args = [], exclude = [], ign… argument
92 self.testset = testset
304 '--testset=%s' % string.join(config.testset, ","),
369 testset = ["dEQP-GLES2.info.*", "dEQP-GLES2.functional.*", "dEQP-GLES2.usecases.*"],
383 testset = ["dEQP-GLES3.info.*", "dEQP-GLES3.functional.*", "dEQP-GLES3.usecases.*"],
402 testset = ["dEQP-GLES31.*"],
425 testset = ["dEQP-GL3.info.*", "dEQP-GL3.functional.*"],
441 testset = ["dEQP-EGL.info.*", "dEQP-EGL.functional.*"],
454 testset = ["dEQP-CL.*"],
/third_party/flutter/skia/tools/skqp/src/
Dskqp.cpp65 std::unordered_set<std::string> testset; in get_unit_tests() local
66 auto insert = [&testset](const char* s, size_t l) { in get_unit_tests()
72 testset.insert(std::string(s, l)); in get_unit_tests()
79 if ((testset.empty() || testset.count(std::string(test.name)) > 0) && test.needsGpu) { in get_unit_tests()
/third_party/skia/tools/skqp/src/
Dskqp.cpp69 std::unordered_set<std::string> testset; in get_unit_tests() local
70 auto insert = [&testset](const char* s, size_t l) { in get_unit_tests()
76 testset.insert(std::string(s, l)); in get_unit_tests()
83 if ((testset.empty() || testset.count(std::string(test.fName)) > 0) && test.fNeedsGpu) { in get_unit_tests()
/third_party/boost/libs/geometry/index/test/rtree/generated/p2d/
Drtree_lin_que_p2d.cpp15 testset::queries<Indexable>(bgi::linear<5, 2>(), std::allocator<int>()); in test_main()
Drtree_qua_mod_p2d.cpp15 testset::modifiers<Indexable>(bgi::quadratic<5, 2>(), std::allocator<int>()); in test_main()
Drtree_dqua_add_p2d.cpp15 testset::additional<Indexable>(bgi::dynamic_quadratic(5, 2), std::allocator<int>()); in test_main()
Drtree_drst_add_p2d.cpp15 testset::additional<Indexable>(bgi::dynamic_rstar(5, 2), std::allocator<int>()); in test_main()
Drtree_dlin_que_p2d.cpp15 testset::queries<Indexable>(bgi::dynamic_linear(5, 2), std::allocator<int>()); in test_main()
/third_party/boost/libs/geometry/index/test/rtree/generated/p3d/
Drtree_dqua_mod_p3d.cpp15 testset::modifiers<Indexable>(bgi::dynamic_quadratic(5, 2), std::allocator<int>()); in test_main()
Drtree_dqua_que_p3d.cpp15 testset::queries<Indexable>(bgi::dynamic_quadratic(5, 2), std::allocator<int>()); in test_main()
Drtree_dlin_que_p3d.cpp15 testset::queries<Indexable>(bgi::dynamic_linear(5, 2), std::allocator<int>()); in test_main()
Drtree_lin_add_p3d.cpp15 testset::additional<Indexable>(bgi::linear<5, 2>(), std::allocator<int>()); in test_main()

12345