[GRASS-SVN] r69576 - in grass/trunk/temporal: t.connect/testsuite t.rast.aggregate/testsuite

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Sep 26 04:59:34 PDT 2016


Author: huhabla
Date: 2016-09-26 04:59:33 -0700 (Mon, 26 Sep 2016)
New Revision: 69576

Modified:
   grass/trunk/temporal/t.connect/testsuite/test_distr_tgis_db_raster.py
   grass/trunk/temporal/t.connect/testsuite/test_distr_tgis_db_raster3d.py
   grass/trunk/temporal/t.connect/testsuite/test_distr_tgis_db_vector.py
   grass/trunk/temporal/t.rast.aggregate/testsuite/test_aggregation_absolute.py
Log:
temporal modules: Fixed module flags 


Modified: grass/trunk/temporal/t.connect/testsuite/test_distr_tgis_db_raster.py
===================================================================
--- grass/trunk/temporal/t.connect/testsuite/test_distr_tgis_db_raster.py	2016-09-26 10:41:10 UTC (rev 69575)
+++ grass/trunk/temporal/t.connect/testsuite/test_distr_tgis_db_raster.py	2016-09-26 11:59:33 UTC (rev 69576)
@@ -32,7 +32,7 @@
             cls.runModule("g.region", s=0, n=80,
                           w=0, e=120, b=0, t=50, res=10, res3=10)
             cls.runModule("t.connect", flags="d")
-            cls.runModule("t.info", flags="s")
+            cls.runModule("t.info", flags="d")
             cls.runModule("r.mapcalc", expression="a1 = 100")
             cls.runModule("r.mapcalc", expression="a2 = 200")
             cls.runModule("r.mapcalc", expression="a3 = 300")

Modified: grass/trunk/temporal/t.connect/testsuite/test_distr_tgis_db_raster3d.py
===================================================================
--- grass/trunk/temporal/t.connect/testsuite/test_distr_tgis_db_raster3d.py	2016-09-26 10:41:10 UTC (rev 69575)
+++ grass/trunk/temporal/t.connect/testsuite/test_distr_tgis_db_raster3d.py	2016-09-26 11:59:33 UTC (rev 69576)
@@ -37,7 +37,7 @@
             cls.runModule("r3.mapcalc", expression="a3 = 300")
             # Create the temporal database
             cls.runModule("t.connect", flags="d")
-            cls.runModule("t.info", flags="s")
+            cls.runModule("t.info", flags="d")
             cls.runModule("t.create", type="str3ds", temporaltype="absolute",
                           output="A", title="A test3d", description="A test3d")
             cls.runModule(

Modified: grass/trunk/temporal/t.connect/testsuite/test_distr_tgis_db_vector.py
===================================================================
--- grass/trunk/temporal/t.connect/testsuite/test_distr_tgis_db_vector.py	2016-09-26 10:41:10 UTC (rev 69575)
+++ grass/trunk/temporal/t.connect/testsuite/test_distr_tgis_db_vector.py	2016-09-26 11:59:33 UTC (rev 69576)
@@ -37,7 +37,7 @@
             cls.runModule("v.random", output="a3", npoints=20)
             # Create the temporal database
             cls.runModule("t.connect", flags="d")
-            cls.runModule("t.info", flags="s")
+            cls.runModule("t.info", flags="d")
             cls.runModule("t.create", type="stvds", temporaltype="absolute",
                           output="A", title="A testvect", description="A testvect")
             cls.runModule("t.register", flags="i", type="vector", input="A",

Modified: grass/trunk/temporal/t.rast.aggregate/testsuite/test_aggregation_absolute.py
===================================================================
--- grass/trunk/temporal/t.rast.aggregate/testsuite/test_aggregation_absolute.py	2016-09-26 10:41:10 UTC (rev 69575)
+++ grass/trunk/temporal/t.rast.aggregate/testsuite/test_aggregation_absolute.py	2016-09-26 11:59:33 UTC (rev 69576)
@@ -103,7 +103,7 @@
 
         # Check the map names are correct
         lister = SimpleModule("t.rast.list", input="B", columns="name",
-                              flags="s")
+                              flags="u")
         self.runModule(lister)
         #print lister.outputs.stdout
         maps="b_2001_01" + os.linesep + "b_2001_02" + os.linesep + \
@@ -144,7 +144,7 @@
 
         # Check the map names are correct
         lister = SimpleModule("t.rast.list", input="B", columns="name",
-                              flags="s")
+                              flags="u")
         self.runModule(lister)
         #print lister.outputs.stdout
         maps="b_11" + os.linesep + "b_12" + os.linesep
@@ -177,7 +177,7 @@
 
         # Check the map names are correct
         lister = SimpleModule("t.rast.list", input="B", columns="name",
-                              flags="s")
+                              flags="u")
         self.runModule(lister)
         #print lister.outputs.stdout
         maps="b_101" + os.linesep



More information about the grass-commit mailing list