Searched defs:test (Results 76 - 100 of 3629) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gyp/test/android/
H A Dgyptest-settings.py14 test = TestGyp.TestGyp(formats=['android']) variable
16 test.run_gyp('settings.gyp')
18 test.build('settings.gyp', 'hello')
20 test.run_built_executable('hello.foo', stdout="Hello, world!\n")
22 test.up_to_date('settings.gyp', test.DEFAULT)
24 test.pass_test()
/external/chromium_org/tools/gyp/test/build-option/
H A Dgyptest-build.py14 test = TestGyp.TestGyp(workdir='workarea_default') variable
16 if test.format == 'android':
17 # This test currently fails on android. Investigate why, fix the issues
18 # responsible, and reenable this test on android. See bug:
20 test.skip_test(message='Test fails on android. Fix and reenable.\n')
22 test.run_gyp('hello.gyp', '--build=Default')
24 test.run_built_executable('hello', stdout="Hello, world!\n")
26 test.up_to_date('hello.gyp', test.DEFAULT)
28 test
[all...]
/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/configurations/basics/
H A Dgyptest-configurations.py13 test = TestGyp.TestGyp() variable
15 if test.format == 'android':
16 # This test currently fails on android. Investigate why, fix the issues
17 # responsible, and reenable this test on android. See bug:
19 test.skip_test(message='Test fails on android. Fix and reenable.\n')
21 test.run_gyp('configurations.gyp')
23 test.set_configuration('Release')
24 test.build('configurations.gyp')
25 test.run_built_executable('configurations', stdout="Release configuration\n")
27 test
[all...]
/external/chromium_org/tools/gyp/test/custom-generator/
H A Dgyptest-custom-generator.py11 test = TestGyp.TestGypCustom(format='mygenerator.py') variable
12 test.run_gyp('test.gyp')
16 test.must_match('MyBuildFile', 'Testing...\n')
18 test.pass_test()
/external/chromium_org/tools/gyp/test/dependencies/
H A Dgyptest-double-dependency.py9 shared_library targets. Regression test for http://crbug.com/122588
14 test = TestGyp.TestGyp() variable
16 test.run_gyp('double_dependency.gyp')
19 test.pass_test()
H A Dgyptest-extra-targets.py13 test = TestGyp.TestGyp() variable
15 test.run_gyp('extra_targets.gyp')
19 test.build('extra_targets.gyp', test.ALL)
21 test.pass_test()
/external/chromium_org/tools/gyp/test/exclusion/
H A Dgyptest-exclusion.py14 test = TestGyp.TestGyp() variable
16 test.run_gyp('exclusion.gyp')
17 test.build('exclusion.gyp')
20 test.built_file_must_exist('hello' + test._exe, test.EXECUTABLE, bare=True)
22 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/hello/
H A Dgyptest-all.py14 test = TestGyp.TestGyp(workdir='workarea_all') variable
16 test.run_gyp('hello.gyp')
18 test.build('hello.gyp', test.ALL)
20 test.run_built_executable('hello', stdout="Hello, world!\n")
22 test.up_to_date('hello.gyp', test.ALL)
24 test.pass_test()
H A Dgyptest-default.py14 test = TestGyp.TestGyp(workdir='workarea_default') variable
16 test.run_gyp('hello.gyp')
18 test.build('hello.gyp')
20 test.run_built_executable('hello', stdout="Hello, world!\n")
22 test.up_to_date('hello.gyp', test.DEFAULT)
24 test.pass_test()
H A Dgyptest-disable-regyp.py14 test = TestGyp.TestGyp() variable
16 test.run_gyp('hello.gyp', '-Gauto_regeneration=0')
18 test.build('hello.gyp', test.ALL)
20 test.run_built_executable('hello', stdout="Hello, world!\n")
24 test.sleep()
25 test.write('hello.gyp', test.read('hello2.gyp'))
27 test.build('hello.gyp', test
[all...]
H A Dgyptest-regyp.py15 test = TestGyp.TestGyp(formats=['make']) variable
17 test.run_gyp('hello.gyp')
19 test.build('hello.gyp', test.ALL)
21 test.run_built_executable('hello', stdout="Hello, world!\n")
25 test.sleep()
26 test.write('hello.gyp', test.read('hello2.gyp'))
28 test.build('hello.gyp', test
[all...]
H A Dgyptest-target.py14 test = TestGyp.TestGyp(workdir='workarea_target') variable
16 test.run_gyp('hello.gyp')
18 test.build('hello.gyp', 'hello')
20 test.run_built_executable('hello', stdout="Hello, world!\n")
22 test.up_to_date('hello.gyp', 'hello')
24 test.pass_test()
/external/chromium_org/tools/gyp/test/link-dependency/
H A Dgyptest-link-dependency.py17 test = TestGyp.TestGyp(formats=['!cmake']) variable
19 test.run_gyp('test.gyp')
20 test.build('test.gyp', 'main')
23 test.pass_test()
/external/chromium_org/tools/gyp/test/many-actions/
H A Dgyptest-many-actions-unsorted.py14 test = TestGyp.TestGyp() variable
16 test.run_gyp('many-actions-unsorted.gyp')
17 test.build('many-actions-unsorted.gyp', test.ALL)
19 test.built_file_must_exist('generated_%d.h' % i)
23 test.touch('file1')
24 test.build('many-actions-unsorted.gyp', test.ALL)
26 test.touch('file0')
27 test
[all...]
H A Dgyptest-many-actions.py14 test = TestGyp.TestGyp() variable
16 test.run_gyp('many-actions.gyp')
17 test.build('many-actions.gyp', test.ALL)
19 test.built_file_must_exist('generated_%d.h' % i)
20 test.pass_test()
/external/chromium_org/tools/gyp/test/module/
H A Dgyptest-default.py16 test = TestGyp.TestGyp(formats=['!android']) variable
18 test.run_gyp('module.gyp', chdir='src')
20 test.build('module.gyp', test.ALL, chdir='src')
27 test.run_built_executable('program', chdir='src', stdout=expect)
29 test.pass_test()
/external/chromium_org/tools/gyp/test/msvs/buildevents/
H A Dgyptest-msbuild-supports-prepostbuild.py14 test = TestGyp.TestGyp(formats=['msvs'], workdir='workarea_all') variable
16 test.run_gyp('buildevents.gyp', '-G', 'msvs_version=2008')
17 test.must_contain('main.vcproj', 'Name="VCPreBuildEventTool"')
18 test.must_contain('main.vcproj', 'Name="VCPostBuildEventTool"')
20 test.run_gyp('buildevents.gyp', '-G', 'msvs_version=2010')
21 test.must_contain('main.vcxproj', '<PreBuildEvent>')
22 test.must_contain('main.vcxproj', '<PostBuildEvent>')
24 test.pass_test()
/external/chromium_org/tools/gyp/test/msvs/express/
H A Dgyptest-express.py14 test = TestGyp.TestGyp(formats=['msvs']) variable
16 test.run_gyp('express.gyp', '-G', 'msvs_version=2005')
17 test.must_contain('express.sln', '(base)')
19 test.run_gyp('express.gyp', '-G', 'msvs_version=2008')
20 test.must_contain('express.sln', '(base)')
22 test.run_gyp('express.gyp', '-G', 'msvs_version=2005e')
23 test.must_not_contain('express.sln', '(base)')
25 test.run_gyp('express.gyp', '-G', 'msvs_version=2008e')
26 test.must_not_contain('express.sln', '(base)')
29 test
[all...]
/external/chromium_org/tools/gyp/test/msvs/filters/
H A Dgyptest-filters-2010.py15 test = TestGyp.TestGyp(formats=['msvs']) variable
17 test.run_gyp('filters.gyp', '-G', 'standalone', '-G', 'msvs_version=2010')
19 test.must_not_exist('no_source_files.vcxproj.filters')
21 test.must_not_exist('one_source_file.vcxproj.filters')
23 test.must_not_exist('two_source_files.vcxproj.filters')
25 test.must_contain('three_files_in_two_folders.vcxproj.filters', '''\
39 test.must_contain('nested_folders.vcxproj.filters', '''\
57 test.pass_test()
/external/chromium_org/tools/gyp/test/msvs/props/
H A Dgyptest-props.py14 test = TestGyp.TestGyp(workdir='workarea_all', formats=['msvs']) variable
16 test.run_gyp('hello.gyp')
18 test.build('hello.gyp')
20 test.built_file_must_exist('Greet.exe')
22 test.pass_test()
/external/chromium_org/tools/gyp/test/msvs/uldi2010/
H A Dgyptest-all.py13 test = TestGyp.TestGyp(formats=['msvs'], workdir='workarea_all') variable
15 test.run_gyp('hello.gyp')
17 if test.uses_msbuild:
18 test.must_contain('hello.vcxproj', '<UseLibraryDependencyInputs>false')
20 test.pass_test()
/external/chromium_org/tools/gyp/test/multiple-targets/
H A Dgyptest-all.py12 test = TestGyp.TestGyp() variable
14 test.run_gyp('multiple.gyp', chdir='src')
16 test.relocate('src', 'relocate/src')
18 test.build('multiple.gyp', test.ALL, chdir='relocate/src', stderr=None)
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()
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()

Completed in 258 milliseconds

1234567891011>>