Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Unified Diff: pkg/fixnum/test/int_64_vm_test.dart

Issue 11405003: Update fixnum to new package guidelines. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/fixnum/test/int_64_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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++) {
« no previous file with comments | « pkg/fixnum/test/int_64_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698