Revision: 22
Author: roman_yakovenko
Date: 2006-04-29 22:49:35 -0700 (Sat, 29 Apr 2006)
ViewCVS: http://svn.sourceforge.net/pygccxml/?rev=22&view=rev
Log Message:
-----------
Small change of unit tests configuration. The main reason is to allow other people
to run unit tests on regular basis.
Modified Paths:
--------------
pygccxml_dev/unittests/autoconfig.py
Modified: pygccxml_dev/unittests/autoconfig.py
===================================================================
--- pygccxml_dev/unittests/autoconfig.py 2006-04-30 05:35:49 UTC (rev 21)
+++ pygccxml_dev/unittests/autoconfig.py 2006-04-30 05:49:35 UTC (rev 22)
@@ -5,13 +5,20 @@
import os
import sys
+import getpass
#__pychecker__ = 'limit=1000'
#import pychecker.checker
+
-gccxml_path = 'gccxml'
+gccxml_path = ''
data_directory = os.path.abspath( os.path.join( os.curdir, 'data' ) )
+if 'roman' in getpass.getuser():
+ if sys.platform == 'win32':
+ gccxml_path = 'c:/tools/gccxml/bin/gccxml.exe'
+ else:
+ gccxml_path = '/home/roman/gccxml/bin/gccxml'
try:
import pygccxml
print 'unittests will run on INSTALLED version'
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|