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

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

Issue 8161004: Handle ELFCLASS32 files for x86-64 (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: typo fixes in last iteration Created 9 years, 2 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 | « src/tools/validator_tools/ncstubout.c ('k') | src/trusted/service_runtime/elf_util.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/service_runtime/build.scons
diff --git a/src/trusted/service_runtime/build.scons b/src/trusted/service_runtime/build.scons
index 71ddac65cbc36dfad490f9957cbf68828f6055fb..dd0703c496062d3f3fa63d32037ccb2be1003334 100644
--- a/src/trusted/service_runtime/build.scons
+++ b/src/trusted/service_runtime/build.scons
@@ -653,6 +653,16 @@ if not env.CrossToolsBuild():
exit_status = '0')
env.AddNodeToTestSuite(node, ['small_tests'], 'run_fuzz_nullptr_test')
+if env.Bit('target_x86_64') and not env.CrossToolsBuild():
+ node = env.CommandSelLdrTestNacl(
+ 'hello_x32.out',
+ env.File(os.path.join(arch_testdata_dir, 'hello_x32.nexe')),
+ stdout_golden=env.File(os.path.join('${MAIN_DIR}',
+ 'tests/hello_world',
+ 'hello_world.stdout'))
+ )
+ env.AddNodeToTestSuite(node, ['small_tests'], 'run_hello_x32_test')
+
# ----------------------------------------------------------
# Integration Tests
# ----------------------------------------------------------
« no previous file with comments | « src/tools/validator_tools/ncstubout.c ('k') | src/trusted/service_runtime/elf_util.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698