Revision: 83
Author: baoilleach
Date: 2006-04-22 10:39:59 -0700 (Sat, 22 Apr 2006)
ViewCVS: http://svn.sourceforge.net/cclib/?rev=83&view=rev
Log Message:
-----------
Adding a script to parse ADF files
Added Paths:
-----------
trunk/test/parseADF.py
Added: trunk/test/parseADF.py
===================================================================
--- trunk/test/parseADF.py (rev 0)
+++ trunk/test/parseADF.py 2006-04-22 17:39:59 UTC (rev 83)
@@ -0,0 +1,12 @@
+import os
+from cclib.parser import ADF
+
+os.chdir(os.path.join("..","data","ADF"))
+
+os.chdir("basicADF2004.01")
+
+for file in ["dvb_gopt.adfout"]:
+ t = ADF(file)
+ t.parse()
+
+
Property changes on: trunk/test/parseADF.py
___________________________________________________________________
Name: svn:executable
+ *
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|