| 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
|
| # ----------------------------------------------------------
|
|
|