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

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

Issue 1234393005: A mechanism to identify/forbid/"rewrite" non-temporal instructions (and other) (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Fixing nits Created 5 years, 5 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 54ea31a7c53e62d6a33c4c6aa99d1a0d165b1197..d79a357ca504e943bf1167f573ae1c6a9d633a42 100644
--- a/src/trusted/validator/build.scons
+++ b/src/trusted/validator/build.scons
@@ -47,3 +47,18 @@ if env.Bit('build_x86') or env.Bit('build_arm'):
env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'],
'run_validator_debug_stub_test')
+
+if env.Bit('build_x86_64'):
+ gtest_env = env.MakeGTestEnv()
+
+ validation_disable_nontemporals_test_exe = gtest_env.ComponentProgram(
+ 'validation_disable_nontemporals_test',
+ ['validation_disable_nontemporals_test.cc'],
+ EXTRA_LIBS=['validators', 'nrd_xfer'])
+
+ node = gtest_env.CommandTest(
+ 'validation_disable_nontemporals_test.out',
+ command=[validation_disable_nontemporals_test_exe])
+
+ env.AddNodeToTestSuite(node, ['small_tests', 'validator_tests'],
+ 'run_disable_nontemporals_test')

Powered by Google App Engine
This is Rietveld 408576698