| Index: runtime/vm/object_test.cc
|
| ===================================================================
|
| --- runtime/vm/object_test.cc (revision 21819)
|
| +++ runtime/vm/object_test.cc (working copy)
|
| @@ -2237,11 +2237,6 @@
|
| }
|
|
|
|
|
| -// Only ia32, x64, and arm can run execution tests.
|
| -#if defined(TARGET_ARCH_IA32) || \
|
| - defined(TARGET_ARCH_X64) || \
|
| - defined(TARGET_ARCH_ARM)
|
| -
|
| static Function* CreateFunction(const char* name) {
|
| const String& class_name = String::Handle(Symbols::New("ownerClass"));
|
| const Script& script = Script::Handle();
|
| @@ -2254,6 +2249,7 @@
|
| return &function;
|
| }
|
|
|
| +
|
| // Test for Code and Instruction object creation.
|
| TEST_CASE(Code) {
|
| extern void GenerateIncrement(Assembler* assembler);
|
| @@ -2345,7 +2341,6 @@
|
| #endif
|
| EXPECT((retval >> kSmiTagShift) == kSmiTestValue);
|
| }
|
| -#endif
|
|
|
|
|
| TEST_CASE(ExceptionHandlers) {
|
|
|