/external/chromium_org/tools/gyp/test/hello/ |
gyptest-target.py | 14 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/many-actions/ |
gyptest-many-actions-unsorted.py | 14 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.build('many-actions-unsorted.gyp', test.ALL [all...] |
gyptest-many-actions.py | 14 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/ |
gyptest-default.py | 16 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/express/ |
gyptest-express.py | 14 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.pass_test( [all...] |
/external/chromium_org/tools/gyp/test/msvs/props/ |
gyptest-props.py | 14 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/ |
gyptest-all.py | 13 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/ |
gyptest-all.py | 12 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()
|
gyptest-default.py | 12 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/no-output/ |
gyptest-no-output.py | 14 # target either. Disabling this test for now. 15 test = TestGyp.TestGyp(formats=['!ninja']) variable 17 test.run_gyp('nooutput.gyp', chdir='src') 18 test.relocate('src', 'relocate/src') 19 test.build('nooutput.gyp', chdir='relocate/src') 21 test.pass_test()
|
/external/chromium_org/tools/gyp/test/product/ |
gyptest-product.py | 15 test = TestGyp.TestGyp(formats=['!android']) variable 17 test.run_gyp('product.gyp') 18 test.build('product.gyp') 21 test.built_file_must_exist('alt1' + test._exe, test.EXECUTABLE, bare=True) 22 test.built_file_must_exist('hello2.stuff', test.EXECUTABLE, bare=True) 23 test.built_file_must_exist('yoalt3.stuff', test.EXECUTABLE, bare=True [all...] |
/external/chromium_org/tools/gyp/test/rules/ |
gyptest-input-root.py | 13 test = TestGyp.TestGyp() variable 15 test.run_gyp('input-root.gyp', chdir='src') 17 test.relocate('src', 'relocate/src') 19 test.build('input-root.gyp', target='test', chdir='relocate/src') 25 test.run_built_executable('test', chdir='relocate/src', stdout=expect) 26 test.pass_test()
|
/external/chromium_org/tools/gyp/test/rules-use-built-dependencies/ |
gyptest-use-built-dependencies.py | 13 test = TestGyp.TestGyp() variable 15 test.run_gyp('use-built-dependencies-rule.gyp', chdir='src') 16 test.relocate('src', 'relocate/src') 17 test.build('use-built-dependencies-rule.gyp', chdir='relocate/src') 19 test.built_file_must_exist('main_output', chdir='relocate/src') 20 test.built_file_must_match('main_output', 'output', chdir='relocate/src') 22 test.pass_test()
|
/external/chromium_org/tools/gyp/test/same-rule-output-file-name/ |
gyptest-all.py | 13 test = TestGyp.TestGyp() variable 15 test.run_gyp('subdirs.gyp', chdir='src') 17 test.relocate('src', 'relocate/src') 19 test.build('subdirs.gyp', test.ALL, chdir='relocate/src') 20 test.must_exist('relocate/src/subdir1/rule.txt') 21 test.must_exist('relocate/src/subdir2/rule.txt') 23 test.pass_test()
|
/external/chromium_org/tools/gyp/test/same-source-file-name/ |
gyptest-all.py | 13 test = TestGyp.TestGyp() variable 15 test.run_gyp('all.gyp', chdir='src') 17 test.relocate('src', 'relocate/src') 19 test.build('all.gyp', test.ALL, 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()
|
gyptest-default.py | 13 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()
|
gyptest-fail-shared.py | 14 test = TestGyp.TestGyp() variable 16 test.run_gyp('double-shared.gyp', chdir='src', status=1, stderr=None) 18 test.pass_test()
|
gyptest-fail-static.py | 14 test = TestGyp.TestGyp() variable 16 test.run_gyp('double-static.gyp', chdir='src', status=1, stderr=None) 18 test.pass_test()
|
gyptest-pass-executable.py | 16 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/same-target-name/ |
gyptest-same-target-name.py | 13 test = TestGyp.TestGyp() variable 16 test.run_gyp('all.gyp', chdir='src', status=1, stderr=None) 18 test.pass_test()
|
/external/chromium_org/tools/gyp/test/same-target-name-different-directory/ |
gyptest-all.py | 8 Test cases when multiple targets in different directories have the same name. 13 test = TestGyp.TestGyp(formats=['android', 'ninja', 'make']) variable 15 test.run_gyp('subdirs.gyp', chdir='src') 17 test.relocate('src', 'relocate/src') 19 # Test that we build all targets. 20 test.build('subdirs.gyp', 'target', chdir='relocate/src') 21 test.must_exist('relocate/src/subdir1/action1.txt') 22 test.must_exist('relocate/src/subdir2/action2.txt') 24 # Test that we build all targets using the correct actions, even if they have 26 test.build('subdirs.gyp', 'target_same_action_name', chdir='relocate/src' [all...] |
/external/chromium_org/tools/gyp/test/sanitize-rule-names/ |
gyptest-sanitize-rule-names.py | 9 broken build files. This test was originally causing broken .ninja files. 14 test = TestGyp.TestGyp() variable 15 test.run_gyp('sanitize-rule-names.gyp') 16 test.build('sanitize-rule-names.gyp', test.ALL) 17 test.pass_test()
|
/external/chromium_org/tools/gyp/test/self-dependency/ |
gyptest-self-dependency.py | 9 shared_library targets. Regression test for http://crbug.com/122588 14 test = TestGyp.TestGyp() variable 16 test.run_gyp('self_dependency.gyp') 19 test.pass_test()
|
/external/chromium_org/tools/gyp/test/variables/latelate/ |
gyptest-latelate.py | 13 test = TestGyp.TestGyp() variable 15 test.run_gyp('latelate.gyp', chdir='src') 17 test.relocate('src', 'relocate/src') 19 test.build('latelate.gyp', test.ALL, chdir='relocate/src') 21 test.run_built_executable( 25 test.pass_test()
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
alloc-object-huge.js | 32 // Test that huge constructors (more than 256 this assignments) are 35 // Test huge constructor when being inlined into hydrogen. 36 function test() { function 39 test(); 40 test(); 41 %OptimizeFunctionOnNextCall(test); 42 var o = test(); 46 // Test huge constructor with specialized constructor stub.
|