| Index: tests/signal_handler_single_step/nacl.scons
|
| diff --git a/tests/signal_handler_single_step/nacl.scons b/tests/signal_handler_single_step/nacl.scons
|
| index 806bcacc9b58c5828324d16f55241e861d3b9d7d..1bc182069df0191883583f9774e3cee048b425bb 100644
|
| --- a/tests/signal_handler_single_step/nacl.scons
|
| +++ b/tests/signal_handler_single_step/nacl.scons
|
| @@ -27,6 +27,12 @@ if env.Bit('host_windows'):
|
| # restore %cs to its saved value on return from a signal handler.
|
| if env.Bit('host_mac'):
|
| Return()
|
| +# nacl-clang's integrated assembler expands "naclcall" to a sequence which
|
| +# separates the push of the return address from the jump, and so breaks the
|
| +# test's expectations for the stack pointer.
|
| +# TODO(dschuff): re-enable this test after we switch to gas with nacl-clang
|
| +if env.Bit('nacl_clang'):
|
| + Return()
|
|
|
| if env.Bit('build_x86'):
|
| step_test_guest = env.ComponentProgram(
|
|
|