[cig-commits] r20697 - short/3D/PyLith/branches/v1.7-trunk/tests_auto/eqinfo

brad at geodynamics.org brad at geodynamics.org
Thu Sep 6 13:26:33 PDT 2012


Author: brad
Date: 2012-09-06 13:26:33 -0700 (Thu, 06 Sep 2012)
New Revision: 20697

Added:
   short/3D/PyLith/branches/v1.7-trunk/tests_auto/eqinfo/test_eqinfo.py
Removed:
   short/3D/PyLith/branches/v1.7-trunk/tests_auto/eqinfo/testeqinfo.py
Modified:
   short/3D/PyLith/branches/v1.7-trunk/tests_auto/eqinfo/Makefile.am
Log:
Avoid case insensitive name clash.

Modified: short/3D/PyLith/branches/v1.7-trunk/tests_auto/eqinfo/Makefile.am
===================================================================
--- short/3D/PyLith/branches/v1.7-trunk/tests_auto/eqinfo/Makefile.am	2012-09-06 17:52:48 UTC (rev 20696)
+++ short/3D/PyLith/branches/v1.7-trunk/tests_auto/eqinfo/Makefile.am	2012-09-06 20:26:33 UTC (rev 20697)
@@ -17,10 +17,10 @@
 #
 
 if ENABLE_HDF5
-TESTS = testeqinfo.py
+TESTS = test_eqinfo.py
 endif
 
-dist_check_SCRIPTS = testeqinfo.py
+dist_check_SCRIPTS = test_eqinfo.py
 
 dist_noinst_PYTHON = \
 	TestEqInfo.py \

Copied: short/3D/PyLith/branches/v1.7-trunk/tests_auto/eqinfo/test_eqinfo.py (from rev 20696, short/3D/PyLith/branches/v1.7-trunk/tests_auto/eqinfo/testeqinfo.py)
===================================================================
--- short/3D/PyLith/branches/v1.7-trunk/tests_auto/eqinfo/test_eqinfo.py	                        (rev 0)
+++ short/3D/PyLith/branches/v1.7-trunk/tests_auto/eqinfo/test_eqinfo.py	2012-09-06 20:26:33 UTC (rev 20697)
@@ -0,0 +1,57 @@
+#!/usr/bin/env python
+#
+# ======================================================================
+#
+# Brad T. Aagaard, U.S. Geological Survey
+# Charles A. Williams, GNS Science
+# Matthew G. Knepley, University of Chicago
+#
+# This code was developed as part of the Computational Infrastructure
+# for Geodynamics (http://geodynamics.org).
+#
+# Copyright (c) 2010-2012 University of California, Davis
+#
+# See COPYING for license information.
+#
+# ======================================================================
+#
+
+__requires__ = "PyLith"
+
+import unittest
+
+def suite():
+  """
+  Create test suite.
+  """
+  suite = unittest.TestSuite()
+
+  from TestEqInfoLine import TestEqInfoLine
+  suite.addTest(unittest.makeSuite(TestEqInfoLine))
+
+  from TestEqInfoTri3 import TestEqInfoTri3
+  suite.addTest(unittest.makeSuite(TestEqInfoTri3))
+
+  from TestEqInfoQuad4 import TestEqInfoQuad4
+  suite.addTest(unittest.makeSuite(TestEqInfoQuad4))
+
+  return suite
+
+
+def main():
+  """
+  Run test suite.
+  """
+  import sys
+  sys.path.append(".")
+
+  unittest.TextTestRunner(verbosity=2).run(suite())
+  return
+
+
+# ----------------------------------------------------------------------
+if __name__ == '__main__':
+  main()
+
+  
+# End of file 

Deleted: short/3D/PyLith/branches/v1.7-trunk/tests_auto/eqinfo/testeqinfo.py
===================================================================
--- short/3D/PyLith/branches/v1.7-trunk/tests_auto/eqinfo/testeqinfo.py	2012-09-06 17:52:48 UTC (rev 20696)
+++ short/3D/PyLith/branches/v1.7-trunk/tests_auto/eqinfo/testeqinfo.py	2012-09-06 20:26:33 UTC (rev 20697)
@@ -1,57 +0,0 @@
-#!/usr/bin/env python
-#
-# ======================================================================
-#
-# Brad T. Aagaard, U.S. Geological Survey
-# Charles A. Williams, GNS Science
-# Matthew G. Knepley, University of Chicago
-#
-# This code was developed as part of the Computational Infrastructure
-# for Geodynamics (http://geodynamics.org).
-#
-# Copyright (c) 2010-2012 University of California, Davis
-#
-# See COPYING for license information.
-#
-# ======================================================================
-#
-
-__requires__ = "PyLith"
-
-import unittest
-
-def suite():
-  """
-  Create test suite.
-  """
-  suite = unittest.TestSuite()
-
-  from TestEqInfoLine import TestEqInfoLine
-  suite.addTest(unittest.makeSuite(TestEqInfoLine))
-
-  from TestEqInfoTri3 import TestEqInfoTri3
-  suite.addTest(unittest.makeSuite(TestEqInfoTri3))
-
-  from TestEqInfoQuad4 import TestEqInfoQuad4
-  suite.addTest(unittest.makeSuite(TestEqInfoQuad4))
-
-  return suite
-
-
-def main():
-  """
-  Run test suite.
-  """
-  import sys
-  sys.path.append(".")
-
-  unittest.TextTestRunner(verbosity=2).run(suite())
-  return
-
-
-# ----------------------------------------------------------------------
-if __name__ == '__main__':
-  main()
-
-  
-# End of file 



More information about the CIG-COMMITS mailing list