瀏覽代碼

Print wrong values in large file test.

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@53270 15284696-431f-4ddb-bdfa-cd5b030d7da7
Soeren Gebbert 13 年之前
父節點
當前提交
bab2b8c54f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/raster3d/test/test_put_get_value_large_file.c

+ 1 - 1
lib/raster3d/test/test_put_get_value_large_file.c

@@ -109,7 +109,7 @@ int test_large_file(int depths, int rows, int cols, int tile_size)
                 /* Add cols, rows and depths and put this in the map */
                 Rast3d_get_value(map, x, y, z, &value, DCELL_TYPE);
                 if(fabs(value - (double)(count) > EPSILON)) {
-                    /* printf("At: z %i y %i x %i -- value %.14lf != %.14lf\n", z, y, x, value, (double)(count)); */
+                    G_message("At: z %i y %i x %i -- value %.14lf != %.14lf\n", z, y, x, value, (double)(count));
 			sum++;
                 }
                 count++;