| Index: masters/master.client.v8/master.cfg
|
| diff --git a/masters/master.client.v8/master.cfg b/masters/master.client.v8/master.cfg
|
| index 01d615f231f96de9dbec71f2664f44f350a38831..053d89d4155500cbe16ac331b2c2ac5aceeedc18 100644
|
| --- a/masters/master.client.v8/master.cfg
|
| +++ b/masters/master.client.v8/master.cfg
|
| @@ -90,7 +90,7 @@ s_v8 = Scheduler(name='v8_src',
|
| 'V8 Linux - debug - nosse4',
|
| 'V8 Linux - deadcode',
|
| 'V8 Linux - interpreted regexp',
|
| - 'V8 Linux - intl - debug',
|
| + 'V8 Linux - noi18n - debug',
|
| 'V8 Win32',
|
| 'V8 Win32 - mozilla',
|
| 'V8 Win32 - test262',
|
| @@ -233,15 +233,16 @@ f_v8_linux_interpreted_regexp = m_linux().V8Factory(
|
| tests=['v8testing_tc'],
|
| target_arch='ia32')
|
|
|
| -f_v8_linux_intl_debug = m_linux().V8Factory(
|
| +f_v8_linux_noi18n_debug = m_linux().V8Factory(
|
| options=linux_default_opts,
|
| target='Debug',
|
| factory_properties={
|
| 'gclient_env': {
|
| - 'GYP_DEFINES': 'v8_enable_i18n_support=1 v8_optimized_debug=1',
|
| + 'GYP_DEFINES': 'v8_enable_i18n_support=0 v8_optimized_debug=1',
|
| },
|
| + 'test_options': ['--noi18n'],
|
| },
|
| - tests=['intl', 'gcmole'],
|
| + tests=['v8testing_tc', 'webkit', 'mozilla', 'test262'],
|
| target_arch='ia32')
|
|
|
| f_v8_linux_debug = m_linux().V8Factory(
|
| @@ -940,8 +941,9 @@ f_nacl_v8_linux = m_linux().V8Factory(
|
| factory_properties={
|
| 'update_nacl_sdk': 'stable',
|
| 'compile_env': {'NACL_SDK_ROOT': nacl_sdk_root_dir},
|
| + 'gclient_env': {'GYP_DEFINES': 'v8_enable_i18n_support=0'},
|
| 'test_env': {'NACL_SDK_ROOT': nacl_sdk_root_dir},
|
| - 'test_options': ['--buildbot=False', '--no-presubmit']
|
| + 'test_options': ['--buildbot=False', '--no-presubmit', '--noi18n']
|
| })
|
|
|
| f_nacl_v8_linux64 = m_linux64().V8Factory(
|
| @@ -953,8 +955,9 @@ f_nacl_v8_linux64 = m_linux64().V8Factory(
|
| factory_properties={
|
| 'update_nacl_sdk': 'stable',
|
| 'compile_env': {'NACL_SDK_ROOT': nacl_sdk_root_dir},
|
| + 'gclient_env': {'GYP_DEFINES': 'v8_enable_i18n_support=0'},
|
| 'test_env': {'NACL_SDK_ROOT': nacl_sdk_root_dir},
|
| - 'test_options': ['--buildbot=False', '--no-presubmit']
|
| + 'test_options': ['--buildbot=False', '--no-presubmit', '--noi18n']
|
| })
|
|
|
| f_nacl_v8_linux64_canary = m_linux64().V8Factory(
|
| @@ -966,8 +969,9 @@ f_nacl_v8_linux64_canary = m_linux64().V8Factory(
|
| factory_properties={
|
| 'update_nacl_sdk': 'canary',
|
| 'compile_env': {'NACL_SDK_ROOT': nacl_sdk_root_dir},
|
| + 'gclient_env': {'GYP_DEFINES': 'v8_enable_i18n_support=0'},
|
| 'test_env': {'NACL_SDK_ROOT': nacl_sdk_root_dir},
|
| - 'test_options': ['--buildbot=False', '--no-presubmit']
|
| + 'test_options': ['--buildbot=False', '--no-presubmit', '--noi18n']
|
| })
|
|
|
| # ----------------------------------------------------------------------------
|
| @@ -1014,10 +1018,10 @@ b_v8_linux_interpreted_regexp = {
|
| 'auto_reboot' : False,
|
| }
|
|
|
| -b_v8_linux_intl_debug = {
|
| - 'name': 'V8 Linux - intl - debug',
|
| - 'builddir': 'v8-linux-intl-debug',
|
| - 'factory': f_v8_linux_intl_debug,
|
| +b_v8_linux_noi18n_debug = {
|
| + 'name': 'V8 Linux - noi18n - debug',
|
| + 'builddir': 'v8-linux-noi18n-debug',
|
| + 'factory': f_v8_linux_noi18n_debug,
|
| 'category': '01Linux|testers',
|
| 'auto_reboot' : False,
|
| }
|
| @@ -1644,7 +1648,7 @@ c['builders'] = [b_v8_linux,
|
| b_v8_linux_debug_nosse3,
|
| b_v8_linux_debug_nosse4,
|
| b_v8_linux_interpreted_regexp,
|
| - b_v8_linux_intl_debug,
|
| + b_v8_linux_noi18n_debug,
|
| b_v8_linux_full_debug,
|
| b_v8_linux_nosnap_full_debug,
|
| b_v8_arm_builder,
|
|
|