[commit] r1930 - trunk/Tests/GPyUnit
GMESRC Repository Notifications
gme-commit at list.isis.vanderbilt.edu
Tue May 22 17:23:03 CDT 2012
Author: ksmyth
Date: Tue May 22 17:23:03 2012
New Revision: 1930
Log:
Fix test under x64: no MU tests
Modified:
trunk/Tests/GPyUnit/test_MetaInterpreter.py
Modified: trunk/Tests/GPyUnit/test_MetaInterpreter.py
==============================================================================
--- trunk/Tests/GPyUnit/test_MetaInterpreter.py Tue May 22 17:22:52 2012 (r1929)
+++ trunk/Tests/GPyUnit/test_MetaInterpreter.py Tue May 22 17:23:03 2012 (r1930)
@@ -51,7 +51,10 @@
GPyUnit.util.MUGenerator(globals(), TestMetaInterpreter)
def _muoutdir(self):
return os.path.abspath(os.getcwd())
-TestMetaInterpreterMU.outdir = _muoutdir
+try:
+ TestMetaInterpreterMU.outdir = _muoutdir
+except NameError:
+ pass # MU isn't tested under x64
if __name__ == "__main__":
unittest.main()
More information about the gme-commit
mailing list