Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Unified Diff: buildbot/buildbot_standard.py

Issue 11362156: Use new ncval as rdfa validator wrapper in regression tests. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: rebase Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: buildbot/buildbot_standard.py
diff --git a/buildbot/buildbot_standard.py b/buildbot/buildbot_standard.py
index de3e6a919f3614872bd9baa3ecc8208f82bc2f69..4a8007ce4e45203ad801d458d2c748d4df4916f4 100644
--- a/buildbot/buildbot_standard.py
+++ b/buildbot/buildbot_standard.py
@@ -257,9 +257,9 @@ def BuildScript(status, context):
Command(context, cmd=['make'], cwd='dfa_validator64')
with Step('build ragel_validator-32', status):
- SCons(context, platform='x86-32', parallel=True, args=['validator_test'])
+ SCons(context, platform='x86-32', parallel=True, args=['ncval_new'])
with Step('build ragel_validator-64', status):
- SCons(context, platform='x86-64', parallel=True, args=['validator_test'])
+ SCons(context, platform='x86-64', parallel=True, args=['ncval_new'])
with Step('predownload validator corpus', status):
Command(context,
@@ -289,12 +289,13 @@ def BuildScript(status, context):
halt_on_fail=False):
ValidatorTest(
context, 'x86-32',
- 'scons-out/opt-linux-x86-32/staging/validator_test')
+ 'scons-out/opt-linux-x86-32/staging/ncval_new')
with Step('validator_regression_test ragel x86-64', status,
halt_on_fail=False):
ValidatorTest(
context, 'x86-64',
- 'scons-out/opt-linux-x86-64/staging/validator_test')
+ 'scons-out/opt-linux-x86-64/staging/ncval_new')
+
with Step('validator_diff_tests', status, halt_on_fail=False):
SCons(context, args=['validator_diff_tests'])
return
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698