| Index: runtime/vm/debugger_api_impl_test.cc
|
| ===================================================================
|
| --- runtime/vm/debugger_api_impl_test.cc (revision 3367)
|
| +++ runtime/vm/debugger_api_impl_test.cc (working copy)
|
| @@ -8,9 +8,9 @@
|
|
|
| namespace dart {
|
|
|
| -#if defined(TARGET_ARCH_IA32) // Only ia32 can run execution tests.
|
| +// Only ia32 and x64 can run execution tests.
|
| +#if defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64)
|
|
|
| -
|
| static bool breakpoint_hit = false;
|
|
|
| static const bool verbose = false;
|
| @@ -81,6 +81,6 @@
|
| EXPECT(breakpoint_hit == true);
|
| }
|
|
|
| -#endif // TARGET_ARCH_IA32.
|
| +#endif // defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64).
|
|
|
| } // namespace dart
|
|
|