Searched refs:test (Results 276 - 300 of 6019) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/tools/gyp/test/home_dot_gyp/
H A Dgyptest-home-includes-regyp.py17 test = TestGyp.TestGyp(formats=['make']) variable
21 test.run_gyp('all.gyp', chdir='src')
25 test.relocate('src', 'relocate/src')
27 test.build('all.gyp', test.ALL, chdir='relocate/src')
29 test.run_built_executable('printfoo',
34 test.sleep()
36 test.write('home/.gyp/include.gypi', test.read('home2/.gyp/include.gypi'))
38 test
[all...]
/external/chromium_org/tools/gyp/test/ninja/s-needs-no-depfiles/
H A Dgyptest-s-needs-no-depfiles.py19 # a ninja-specific test.
20 test = TestGyp.TestGyp(formats=['ninja']) variable
23 # This test is about clang/gcc vs. depfiles; VS gets a pass.
24 test.pass_test()
27 test.run_gyp('s-needs-no-depfiles.gyp')
31 test.build('s-needs-no-depfiles.gyp', 'empty')
32 empty_dll = test.built_file_path('empty', test.SHARED_LIB)
33 test.built_file_must_exist(empty_dll)
34 pre_stat = os.stat(test
[all...]
/external/chromium_org/tools/gyp/test/win/
H A Dgyptest-cl-debug-format.py16 test = TestGyp.TestGyp(formats=['ninja']) variable
19 test.run_gyp('debug-format.gyp', chdir=CHDIR)
25 ninja_file = test.built_file_path('obj/test-debug-format-off.ninja',
27 test.must_not_contain(ninja_file, '/Z7')
28 test.must_not_contain(ninja_file, '/Zi')
29 test.must_not_contain(ninja_file, '/ZI')
31 ninja_file = test.built_file_path('obj/test-debug-format-oldstyle.ninja',
33 test
[all...]
H A Dgyptest-link-ltcg.py16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable
19 test.run_gyp('ltcg.gyp', chdir=CHDIR)
25 # test 'LinkTimeCodeGenerationOptionDefault'
26 test.build('ltcg.gyp', 'test_ltcg_off', chdir=CHDIR)
27 test.run_built_executable('test_ltcg_off', chdir=CHDIR)
28 test.must_not_contain_any_line(test.stdout(), [INLINE_MARKER])
30 # test 'LinkTimeCodeGenerationOptionUse'
31 test.build('ltcg.gyp', 'test_ltcg_on', chdir=CHDIR)
32 test
[all...]
H A Dgyptest-link-opt-icf.py16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable
19 test.run_gyp('opt-icf.gyp', chdir=CHDIR)
20 test.build('opt-icf.gyp', chdir=CHDIR)
24 output = test.run_dumpbin(
25 '/disasm', test.built_file_path('test_opticf_default.exe', chdir=CHDIR))
27 test.fail_test()
30 output = test.run_dumpbin(
31 '/disasm', test.built_file_path('test_opticf_no.exe', chdir=CHDIR))
33 test.fail_test()
36 output = test
[all...]
H A Dgyptest-link-opt-ref.py16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable
19 test.run_gyp('opt-ref.gyp', chdir=CHDIR)
20 test.build('opt-ref.gyp', chdir=CHDIR)
23 output = test.run_dumpbin(
24 '/disasm', test.built_file_path('test_optref_default.exe', chdir=CHDIR))
26 test.fail_test()
29 output = test.run_dumpbin(
30 '/disasm', test.built_file_path('test_optref_no.exe', chdir=CHDIR))
32 test.fail_test()
35 output = test
[all...]
H A Dgyptest-link-subsystem.py16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable
19 test.run_gyp('subsystem.gyp', chdir=CHDIR)
21 test.build('subsystem.gyp', 'test_console_ok', chdir=CHDIR)
22 test.build('subsystem.gyp', 'test_console_fail', chdir=CHDIR, status=1)
23 test.build('subsystem.gyp', 'test_windows_ok', chdir=CHDIR)
24 test.build('subsystem.gyp', 'test_windows_fail', chdir=CHDIR, status=1)
26 test.build('subsystem.gyp', 'test_console_xp', chdir=CHDIR)
27 test.build('subsystem.gyp', 'test_windows_xp', chdir=CHDIR)
30 return test.run_dumpbin('/headers', test
[all...]
/external/libcxx/test/strings/basic.string/string.modifiers/string_copy/
H A Dcopy.pass.cpp23 test(S str, typename S::value_type* s, typename S::size_type n, function
47 test(S(""), s, 0, 0);
48 test(S(""), s, 0, 1);
49 test(S(""), s, 1, 0);
50 test(S("abcde"), s, 0, 0);
51 test(S("abcde"), s, 0, 1);
52 test(S("abcde"), s, 0, 2);
53 test(S("abcde"), s, 0, 4);
54 test(S("abcde"), s, 0, 5);
55 test(
[all...]
/external/libcxx/test/strings/basic.string/string.modifiers/string_replace/
H A Dsize_size_pointer.pass.cpp26 test(S s, typename S::size_type pos, typename S::size_type n1, function
51 test(S(""), 0, 0, "", S(""));
52 test(S(""), 0, 0, "12345", S("12345"));
53 test(S(""), 0, 0, "1234567890", S("1234567890"));
54 test(S(""), 0, 0, "12345678901234567890", S("12345678901234567890"));
55 test(S(""), 0, 1, "", S(""));
56 test(S(""), 0, 1, "12345", S("12345"));
57 test(S(""), 0, 1, "1234567890", S("1234567890"));
58 test(S(""), 0, 1, "12345678901234567890", S("12345678901234567890"));
59 test(
[all...]
H A Dsize_size_size_char.pass.cpp24 test(S s, typename S::size_type pos, typename S::size_type n1, function
50 test(S(""), 0, 0, 0, '2', S(""));
51 test(S(""), 0, 0, 5, '2', S("22222"));
52 test(S(""), 0, 0, 10, '2', S("2222222222"));
53 test(S(""), 0, 0, 20, '2', S("22222222222222222222"));
54 test(S(""), 0, 1, 0, '2', S(""));
55 test(S(""), 0, 1, 5, '2', S("22222"));
56 test(S(""), 0, 1, 10, '2', S("2222222222"));
57 test(S(""), 0, 1, 20, '2', S("22222222222222222222"));
58 test(
[all...]
H A Dsize_size_string.pass.cpp24 test(S s, typename S::size_type pos1, typename S::size_type n1, S str, S expected) function
48 test(S(""), 0, 0, S(""), S(""));
49 test(S(""), 0, 0, S("12345"), S("12345"));
50 test(S(""), 0, 0, S("1234567890"), S("1234567890"));
51 test(S(""), 0, 0, S("12345678901234567890"), S("12345678901234567890"));
52 test(S(""), 0, 1, S(""), S(""));
53 test(S(""), 0, 1, S("12345"), S("12345"));
54 test(S(""), 0, 1, S("1234567890"), S("1234567890"));
55 test(S(""), 0, 1, S("12345678901234567890"), S("12345678901234567890"));
56 test(
[all...]
H A Dsize_size_pointer_size.pass.cpp26 test(S s, typename S::size_type pos, typename S::size_type n1, function
52 test(S(""), 0, 0, "", 0, S(""));
53 test(S(""), 0, 0, "12345", 0, S(""));
54 test(S(""), 0, 0, "12345", 1, S("1"));
55 test(S(""), 0, 0, "12345", 2, S("12"));
56 test(S(""), 0, 0, "12345", 4, S("1234"));
57 test(S(""), 0, 0, "12345", 5, S("12345"));
58 test(S(""), 0, 0, "1234567890", 0, S(""));
59 test(S(""), 0, 0, "1234567890", 1, S("1"));
60 test(
[all...]
/external/libcxx/test/strings/basic.string/string.ops/string_compare/
H A Dsize_size_string.pass.cpp31 test(const S& s, typename S::size_type pos1, typename S::size_type n1, function
48 test(S(""), 0, 0, S(""), 0);
49 test(S(""), 0, 0, S("abcde"), -5);
50 test(S(""), 0, 0, S("abcdefghij"), -10);
51 test(S(""), 0, 0, S("abcdefghijklmnopqrst"), -20);
52 test(S(""), 0, 1, S(""), 0);
53 test(S(""), 0, 1, S("abcde"), -5);
54 test(S(""), 0, 1, S("abcdefghij"), -10);
55 test(S(""), 0, 1, S("abcdefghijklmnopqrst"), -20);
56 test(
[all...]
/external/libcxx/test/algorithms/alg.modifying.operations/alg.transform/
H A Dbinary_transform.pass.cpp26 test() function
43 test<input_iterator<const int*>, input_iterator<const int*>, output_iterator<int*> >();
44 test<input_iterator<const int*>, input_iterator<const int*>, input_iterator<int*> >();
45 test<input_iterator<const int*>, input_iterator<const int*>, forward_iterator<int*> >();
46 test<input_iterator<const int*>, input_iterator<const int*>, bidirectional_iterator<int*> >();
47 test<input_iterator<const int*>, input_iterator<const int*>, random_access_iterator<int*> >();
48 test<input_iterator<const int*>, input_iterator<const int*>, int*>();
50 test<input_iterator<const int*>, forward_iterator<const int*>, output_iterator<int*> >();
51 test<input_iterator<const int*>, forward_iterator<const int*>, input_iterator<int*> >();
52 test<input_iterato
[all...]
/external/libcxx/test/atomics/atomics.types.operations/atomics.types.operations.req/
H A Datomic_exchange.pass.cpp26 test() function
51 test<A>();
52 test<char>();
53 test<signed char>();
54 test<unsigned char>();
55 test<short>();
56 test<unsigned short>();
57 test<int>();
58 test<unsigned int>();
59 test<lon
[all...]
H A Datomic_exchange_explicit.pass.cpp26 test() function
53 test<A>();
54 test<char>();
55 test<signed char>();
56 test<unsigned char>();
57 test<short>();
58 test<unsigned short>();
59 test<int>();
60 test<unsigned int>();
61 test<lon
[all...]
H A Datomic_init.pass.cpp26 test() function
49 test<A>();
50 test<char>();
51 test<signed char>();
52 test<unsigned char>();
53 test<short>();
54 test<unsigned short>();
55 test<int>();
56 test<unsigned int>();
57 test<lon
[all...]
H A Datomic_load.pass.cpp26 test() function
49 test<A>();
50 test<char>();
51 test<signed char>();
52 test<unsigned char>();
53 test<short>();
54 test<unsigned short>();
55 test<int>();
56 test<unsigned int>();
57 test<lon
[all...]
H A Datomic_load_explicit.pass.cpp26 test() function
49 test<A>();
50 test<char>();
51 test<signed char>();
52 test<unsigned char>();
53 test<short>();
54 test<unsigned short>();
55 test<int>();
56 test<unsigned int>();
57 test<lon
[all...]
H A Datomic_store.pass.cpp26 test() function
49 test<A>();
50 test<char>();
51 test<signed char>();
52 test<unsigned char>();
53 test<short>();
54 test<unsigned short>();
55 test<int>();
56 test<unsigned int>();
57 test<lon
[all...]
H A Datomic_store_explicit.pass.cpp26 test() function
49 test<A>();
50 test<char>();
51 test<signed char>();
52 test<unsigned char>();
53 test<short>();
54 test<unsigned short>();
55 test<int>();
56 test<unsigned int>();
57 test<lon
[all...]
/external/libcxx/test/strings/basic.string/string.ops/string_find/
H A Dchar_size.pass.cpp21 test(const S& s, typename S::value_type c, typename S::size_type pos, function
31 test(const S& s, typename S::value_type c, typename S::size_type x) function
42 test(S(""), 'c', 0, S::npos);
43 test(S(""), 'c', 1, S::npos);
44 test(S("abcde"), 'c', 0, 2);
45 test(S("abcde"), 'c', 1, 2);
46 test(S("abcde"), 'c', 2, 2);
47 test(S("abcde"), 'c', 4, S::npos);
48 test(S("abcde"), 'c', 5, S::npos);
49 test(
[all...]
/external/libcxx/test/strings/basic.string/string.ops/string_find.last.not.of/
H A Dchar_size.pass.cpp21 test(const S& s, typename S::value_type c, typename S::size_type pos, function
31 test(const S& s, typename S::value_type c, typename S::size_type x) function
42 test(S(""), 'i', 0, S::npos);
43 test(S(""), 'i', 1, S::npos);
44 test(S("kitcj"), 'i', 0, 0);
45 test(S("qkamf"), 'i', 1, 1);
46 test(S("nhmko"), 'i', 2, 2);
47 test(S("tpsaf"), 'i', 4, 4);
48 test(S("lahfb"), 'i', 5, 4);
49 test(
[all...]
/external/libcxx/test/strings/basic.string/string.ops/string_rfind/
H A Dchar_size.pass.cpp21 test(const S& s, typename S::value_type c, typename S::size_type pos, function
31 test(const S& s, typename S::value_type c, typename S::size_type x) function
42 test(S(""), 'b', 0, S::npos);
43 test(S(""), 'b', 1, S::npos);
44 test(S("abcde"), 'b', 0, S::npos);
45 test(S("abcde"), 'b', 1, 1);
46 test(S("abcde"), 'b', 2, 1);
47 test(S("abcde"), 'b', 4, 1);
48 test(S("abcde"), 'b', 5, 1);
49 test(
[all...]
/external/chromium_org/tools/gyp/test/actions-subdir/
H A Dgyptest-action.py14 test = TestGyp.TestGyp(formats=['!xcode']) variable
16 test.run_gyp('none.gyp', chdir='src')
18 test.build('none.gyp', test.ALL, chdir='src')
23 test.built_file_must_match('file.out', file_content, chdir='src')
24 test.built_file_must_match('subdir_file.out', subdir_file_content, chdir='src')
26 test.pass_test()

Completed in 6964 milliseconds

<<11121314151617181920>>