convert strconv
R=r
DELTA=568 (0 added, 9 deleted, 559 changed)
OCL=22898
CL=22901
diff --git a/test/map.go b/test/map.go
index 21d4fd7..51c6fe5 100644
--- a/test/map.go
+++ b/test/map.go
@@ -61,8 +61,8 @@
var apT [2*count]*T;
for i := 0; i < count; i++ {
- s := strconv.itoa(i);
- s10 := strconv.itoa(i*10);
+ s := strconv.Itoa(i);
+ s10 := strconv.Itoa(i*10);
f := float(i);
t := T{int64(i),f};
apT[i] = new(T);
@@ -137,8 +137,8 @@
// test construction directly
for i := 0; i < count; i++ {
- s := strconv.itoa(i);
- s10 := strconv.itoa(i*10);
+ s := strconv.Itoa(i);
+ s10 := strconv.Itoa(i*10);
f := float(i);
t := T{int64(i), f};
// BUG m := M(i, i+1);
@@ -191,7 +191,7 @@
// test existence with tuple check
// failed lookups yield a false value for the boolean.
for i := 0; i < count; i++ {
- s := strconv.itoa(i);
+ s := strconv.Itoa(i);
f := float(i);
t := T{int64(i), f};
{
@@ -329,7 +329,7 @@
// test nonexistence with tuple check
// failed lookups yield a false value for the boolean.
for i := count; i < 2*count; i++ {
- s := strconv.itoa(i);
+ s := strconv.Itoa(i);
f := float(i);
t := T{int64(i),f};
{
@@ -467,7 +467,7 @@
// tests for structured map element updates
for i := 0; i < count; i++ {
- s := strconv.itoa(i);
+ s := strconv.Itoa(i);
mspa[s][i % 2] = "deleted";
if mspa[s][i % 2] != "deleted" {
fmt.Printf("update mspa[%s][%d] = %s\n", s, i %2, mspa[s][i % 2]);