Chromium Code Reviews| Index: pkg/fixnum/test/int_64_vm_test.dart |
| diff --git a/pkg/fixnum/test/int_64_vm_test.dart b/pkg/fixnum/test/int_64_vm_test.dart |
| index 97e985c0f8936d8fe5f726e8cc0b49791de8866b..48ea1a2352f76c6f9e0d227d245884861d22fb83 100644 |
| --- a/pkg/fixnum/test/int_64_vm_test.dart |
| +++ b/pkg/fixnum/test/int_64_vm_test.dart |
| @@ -6,9 +6,9 @@ |
| library int64vmtest; |
| import 'dart:math', prefix: 'Math'; |
| -part '../intx.dart'; |
| -part '../int32.dart'; |
| -part '../int64.dart'; |
| +part '../lib/intx.dart'; |
| +part '../lib/int32.dart'; |
| +part '../lib/int64.dart'; |
|
gram
2012/11/09 18:35:55
Won't you have a problem here later with 'part of'
Bob Nystrom
2012/11/09 21:23:17
Yeah, we will. I tried making them sublibraries in
|
| void main() { |
| int64VMTest test = new int64VMTest(); |
| @@ -100,7 +100,7 @@ class int64VMTest { |
| static const int BASE_VALUES = 32; |
| static const int RANDOM_TESTS = 32; |
| List<int64> TEST_VALUES; |
| - |
| + |
| int64VMTest() { |
| Set<int64> testSet = new Set<int64>(); |
| for (int i = 0; i < BASE_VALUES; i++) { |
| @@ -275,7 +275,7 @@ class int64VMTest { |
| Expect.fail("${op.name}: val0 = $val0, val1 = $val1"); |
| } |
| } |
| - |
| + |
| void doTestBoolean(BooleanOp op) { |
| print("Testing operator ${op.name}"); |
| for (int i = 0; i < TEST_VALUES.length; i++) { |
| @@ -308,7 +308,7 @@ class int64VMTest { |
| Expect.fail("${op.name}: val = $val, shift = $shift"); |
| } |
| } |
| - |
| + |
| void doTestShift(ShiftOp op) { |
| print("Testing operator ${op.name}"); |
| for (int i = 0; i < TEST_VALUES.length; i++) { |