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

Unified Diff: src/trusted/validator/build.scons

Issue 1269113003: Rewrite non-temporal instructions Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Turning off tests relying on tool chain Created 5 years, 4 months 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
Index: src/trusted/validator/build.scons
diff --git a/src/trusted/validator/build.scons b/src/trusted/validator/build.scons
index d79a357ca504e943bf1167f573ae1c6a9d633a42..120f30cf9f493755b2db2dcf7d91b817601c7dc3 100644
--- a/src/trusted/validator/build.scons
+++ b/src/trusted/validator/build.scons
@@ -62,3 +62,29 @@ if env.Bit('build_x86_64'):
env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'],
'run_disable_nontemporals_test')
+
+if env.Bit('build_x86_64'):
+ validation_rewrite_test_exe= gtest_env.ComponentProgram(
Mark Seaborn 2015/08/14 21:12:59 Nit: there should be spaces before and after "="
ruiq 2015/08/15 04:46:40 Done.
+ 'validation_rewrite_64_test',
+ ['validation_rewrite_64_test.cc', 'validation_rewrite_64_test_data.S'],
+ EXTRA_LIBS=['validators', 'nrd_xfer'])
+
+ node = gtest_env.CommandTest(
+ 'validation_rewrite_64_test.out',
+ command=[validation_rewrite_test_exe])
+
+ env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'],
+ 'run_validation_rewrite_64_test')
+
+if env.Bit('build_x86_32'):
+ validation_rewrite_test_exe= gtest_env.ComponentProgram(
+ 'validation_rewrite_32_test',
+ ['validation_rewrite_32_test.cc', 'validation_rewrite_32_test_data.S'],
+ EXTRA_LIBS=['validators', 'nrd_xfer'])
+
+ node = gtest_env.CommandTest(
+ 'validation_rewrite_32_test.out',
+ command=[validation_rewrite_test_exe])
+
+ env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'],
+ 'run_validation_rewrite_32_test')

Powered by Google App Engine
This is Rietveld 408576698