Searched refs:test (Results 301 - 325 of 6019) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/tools/gyp/test/assembly/
H A Dgyptest-assembly.py8 A basic test of compiling assembler files.
16 test = TestGyp.TestGyp(formats=['!msvs']) variable
18 test.run_gyp('assembly.gyp', chdir='src')
20 test.relocate('src', 'relocate/src')
22 test.build('assembly.gyp', test.ALL, chdir='relocate/src')
28 test.run_built_executable('program', chdir='relocate/src', stdout=expect)
31 test.pass_test()
/external/chromium_org/tools/gyp/test/compilable/
H A Dgyptest-headers.py14 test = TestGyp.TestGyp() variable
16 test.run_gyp('headers.gyp', chdir='src')
18 test.relocate('src', 'relocate/src')
20 test.build('headers.gyp', test.ALL, chdir='relocate/src')
26 test.run_built_executable('program', chdir='relocate/src', stdout=expect)
29 test.pass_test()
/external/chromium_org/tools/gyp/test/copies/
H A Dgyptest-samedir.py15 test = TestGyp.TestGyp(formats=['!android']) variable
16 test.run_gyp('copies-samedir.gyp', chdir='src')
17 test.relocate('src', 'relocate/src')
18 test.build('copies-samedir.gyp', 'copies_samedir', chdir='relocate/src')
20 test.built_file_must_match('copies-out-samedir/file1',
24 test.built_file_must_match('copies-out-samedir/file2',
28 test.pass_test()
/external/chromium_org/tools/gyp/test/external-cross-compile/
H A Dgyptest-cross.py14 test = TestGyp.TestGyp() variable
16 test.run_gyp('cross.gyp', chdir='src')
18 test.relocate('src', 'relocate/src')
20 test.build('cross.gyp', test.ALL, chdir='relocate/src')
28 test.run_built_executable('program', chdir='relocate/src', stdout=expect)
31 test.pass_test()
/external/chromium_org/tools/gyp/test/home_dot_gyp/
H A Dgyptest-home-includes-config-arg.py15 test = TestGyp.TestGyp() variable
19 test.run_gyp('all.gyp', '--config-dir=~/.gyp_new', chdir='src')
23 test.relocate('src', 'relocate/src')
25 test.build('all.gyp', test.ALL, chdir='relocate/src')
27 test.run_built_executable('printfoo',
31 test.pass_test()
H A Dgyptest-home-includes.py14 test = TestGyp.TestGyp() variable
18 test.run_gyp('all.gyp', chdir='src')
22 test.relocate('src', 'relocate/src')
24 test.build('all.gyp', test.ALL, chdir='relocate/src')
26 test.run_built_executable('printfoo',
30 test.pass_test()
/external/chromium_org/tools/gyp/test/mac/
H A Dgyptest-postbuild-multiple-configurations.py16 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) variable
19 test.run_gyp('test.gyp', chdir=CHDIR)
22 test.set_configuration(configuration)
23 test.build('test.gyp', test.ALL, chdir=CHDIR)
24 test.built_file_must_exist('postbuild-file', chdir=CHDIR)
26 test.pass_test()
/external/chromium_org/tools/gyp/test/msvs/missing_sources/
H A Dgyptest-missing.py17 test = TestGyp.TestGyp(formats=['msvs', 'ninja'], workdir='workarea_all') variable
20 test.run_gyp('hello_missing.gyp')
25 test.run_gyp('hello_missing.gyp')
37 test.run_gyp('hello_missing.gyp', status=1, stderr=None)
40 test.must_contain_any_line(test.stderr(),
43 test.pass_test()
/external/chromium_org/tools/gyp/test/multiple-targets/
H A Dgyptest-default.py12 test = TestGyp.TestGyp() variable
14 test.run_gyp('multiple.gyp', chdir='src')
16 test.relocate('src', 'relocate/src')
18 test.build('multiple.gyp', chdir='relocate/src')
30 test.run_built_executable('prog1', stdout=expect1, chdir='relocate/src')
31 test.run_built_executable('prog2', stdout=expect2, chdir='relocate/src')
33 test.pass_test()
/external/chromium_org/tools/gyp/test/ninja/use-custom-environment-files/
H A Dgyptest-use-custom-environment-files.py17 test = TestGyp.TestGyp(formats=['ninja']) variable
19 test.run_gyp('use-custom-environment-files.gyp',
23 if os.path.exists(test.built_file_path('environment.x86')):
24 test.fail_test()
25 if os.path.exists(test.built_file_path('environment.x64')):
26 test.fail_test()
28 test.pass_test()
/external/chromium_org/tools/gyp/test/same-source-file-name/
H A Dgyptest-default.py13 test = TestGyp.TestGyp() variable
15 test.run_gyp('all.gyp', chdir='src')
17 test.relocate('src', 'relocate/src')
19 test.build('all.gyp', chdir='relocate/src')
31 test.run_built_executable('prog1', chdir='relocate/src', stdout=expect1)
32 test.run_built_executable('prog2', chdir='relocate/src', stdout=expect2)
34 test.pass_test()
H A Dgyptest-pass-executable.py16 test = TestGyp.TestGyp(formats=['!msvs']) variable
18 test.run_gyp('double-executable.gyp', chdir='src')
20 test.relocate('src', 'relocate/src')
22 test.build('double-executable.gyp', test.ALL, chdir='relocate/src')
31 test.run_built_executable('prog3', chdir='relocate/src', stdout=expect)
33 test.pass_test()
/external/chromium_org/tools/gyp/test/subdirectory/
H A Dgyptest-SYMROOT-default.py20 test = TestGyp.TestGyp() variable
22 test.run_gyp('prog1.gyp', '-Dset_symroot=1', '--depth=.', chdir='src')
24 test.relocate('src', 'relocate/src')
26 # Suppress the test infrastructure's setting SYMROOT on the command line.
27 test.build('prog1.gyp', SYMROOT=None, chdir='relocate/src')
29 test.run_built_executable('prog1',
33 test.run_built_executable('prog2',
37 test.pass_test()
/external/chromium_org/tools/gyp/test/toplevel-dir/
H A Dgyptest-toplevel-dir.py16 test = TestGyp.TestGyp(formats=['ninja', 'make']) variable
19 test.run_gyp('main.gyp', '--toplevel-dir=..', chdir='src/sub1')
23 test.build('all', chdir=toplevel_dir)
25 test.built_file_must_exist('prog1', type=test.EXECUTABLE, chdir=toplevel_dir)
27 test.run_built_executable('prog1',
31 test.pass_test()
/external/chromium_org/tools/gyp/test/win/
H A Dgyptest-cl-pdbname-override.py16 test = TestGyp.TestGyp() variable
19 test.run_gyp('pdbname-override.gyp', chdir=CHDIR)
20 test.build('pdbname-override.gyp', test.ALL, chdir=CHDIR)
24 test.built_file_must_exist('compiler_generated.pdb', chdir=CHDIR)
25 test.built_file_must_exist('linker_generated.pdb', chdir=CHDIR)
27 test.pass_test()
H A Dgyptest-lib-ltcg.py16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable
19 test.run_gyp('ltcg.gyp', chdir=CHDIR)
20 test.build('ltcg.gyp', test.ALL, chdir=CHDIR)
21 test.must_not_contain_any_line(test.stdout(), ['restarting link with /LTCG'])
22 test.pass_test()
H A Dgyptest-macro-projectname.py16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable
19 test.run_gyp('projectname.gyp', chdir=CHDIR)
20 test.build('projectname.gyp', test.ALL, chdir=CHDIR)
21 test.built_file_must_exist('test_expansions_plus_something.exe', chdir=CHDIR)
22 test.built_file_must_exist(
24 test.pass_test()
H A Dgyptest-rc-build.py16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable
19 test.run_gyp('hello.gyp', chdir=CHDIR)
20 test.build('hello.gyp', test.ALL, chdir=CHDIR)
21 test.up_to_date('hello.gyp', 'resource_only_dll', chdir=CHDIR)
22 test.run_built_executable('with_resources', chdir=CHDIR, status=4)
24 test.pass_test()
/external/chromium_org/tools/gyp/test/win/precompiled/
H A Dgyptest-all.py16 test = TestGyp.TestGyp(formats=['msvs', 'ninja'], workdir='workarea_all') variable
17 test.run_gyp('hello.gyp')
18 test.build('hello.gyp', 'hello')
19 test.run_built_executable('hello', stdout="Hello, world!\nHello, two!\n")
20 test.up_to_date('hello.gyp', test.ALL)
21 test.pass_test()
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2250.js51 function test() { function
60 test();
61 %OptimizeFunctionOnNextCall(test);
62 test();
63 %OptimizeFunctionOnNextCall(test);
66 test();
67 assertOptimized(test);
/external/libcxx/test/strings/basic.string/string.modifiers/string_erase/
H A Dsize_size.pass.cpp23 test(S s, typename S::size_type pos, typename S::size_type n, S expected) function
43 test(S s, typename S::size_type pos, S expected) function
63 test(S s, S expected) function
74 test(S(""), 0, 0, S(""));
75 test(S(""), 0, 1, S(""));
76 test(S(""), 1, 0, S("can't happen"));
77 test(S("abcde"), 0, 0, S("abcde"));
78 test(S("abcde"), 0, 1, S("bcde"));
79 test(S("abcde"), 0, 2, S("cde"));
80 test(
[all...]
/external/chromium_org/extensions/test/data/
H A Dapi_test_base_unittest.js5 var test = require('test').binding; variable
10 test.assertTrue(!!$Array);
11 test.assertTrue(!!$Function);
12 test.assertTrue(!!$JSON);
13 test.assertTrue(!!$Object);
14 test.assertTrue(!!$RegExp);
15 test.assertTrue(!!$String);
16 test.assertTrue(!!privates);
17 test
[all...]
/external/chromium_org/third_party/closure_compiler/runner/test/com/google/javascript/jscomp/
H A DChromePassTest.java24 test(
37 test(
58 test("cr.define('namespace', function() {\n" +
80 test(
101 test(
118 test(
137 test(
160 test(
177 test(
196 test(
[all...]
/external/chromium_org/tools/gyp/test/configurations/x64/
H A Dgyptest-x86.py18 test = TestGyp.TestGyp(formats=formats) variable
20 test.run_gyp('configurations.gyp')
21 test.set_configuration('Debug|Win32')
22 test.build('configurations.gyp', test.ALL)
26 output = test.run_dumpbin(
27 '/headers', test.built_file_path('configurations%s.exe' % suffix))
29 test.fail_test()
31 test.pass_test()
/external/chromium_org/tools/gyp/test/cxxflags/
H A Dgyptest-cxxflags.py12 In this test, gyp happens within a local environment, but build outside of it.
19 test = TestGyp.TestGyp(formats=FORMATS) variable
24 test.run_gyp('cxxflags.gyp')
26 test.build('cxxflags.gyp')
31 test.run_built_executable('cxxflags', stdout=expect)
33 test.sleep()
36 test.run_gyp('cxxflags.gyp')
38 test.build('cxxflags.gyp')
43 test.run_built_executable('cxxflags', stdout=expect)
45 test
[all...]

Completed in 280 milliseconds

<<11121314151617181920>>