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

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

Issue 1309953002: x86 validator: Rewrite non-temporal stores into cached memory accesses (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Review nit Created 4 years, 10 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
« no previous file with comments | « no previous file | src/trusted/validator/validation_cache_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator/build.scons
diff --git a/src/trusted/validator/build.scons b/src/trusted/validator/build.scons
index d79a357ca504e943bf1167f573ae1c6a9d633a42..c00fa123e077e79c1219cf318385742564ca5353 100644
--- a/src/trusted/validator/build.scons
+++ b/src/trusted/validator/build.scons
@@ -62,3 +62,16 @@ if env.Bit('build_x86_64'):
env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'],
'run_disable_nontemporals_test')
+
+if env.Bit('build_x86'):
+ validation_rewrite_test_exe = gtest_env.ComponentProgram(
+ 'validation_rewrite_test',
+ ['validation_rewrite_test.cc', 'validation_rewrite_test_data.S'],
+ EXTRA_LIBS=['validators', 'nrd_xfer'])
+
+ node = gtest_env.CommandTest(
+ 'validation_rewrite_test.out',
+ command=[validation_rewrite_test_exe])
+
+ env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'],
+ 'run_validation_rewrite_test')
« no previous file with comments | « no previous file | src/trusted/validator/validation_cache_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698