[Monetdb-developers] Mtest for M5-SQL
I updated all my system yesterday night. Now I am trying to run the Mtest for M5-SQL and I got this error. [goncalve@amelia src]$ Mtest_5_sql -rq Could not open file /ufs/goncalve/scratch/MonetDB/monetdb5/etc/MonetDB5.conf Mtest.py Warning: TSTSRCBASE: Replacing logical path /ufs/goncalve/MonetDB/SQL/sql/ by absolute physical path /ufs/goncalve/MonetDB/SQL/sql Mtest.py Warning: TSTBLDBASE: Replacing logical path /ufs/goncalve/scratch/SQL/sql/build/ by absolute physical path /net/amelia/export/scratch1/goncalve/SQL/sql/build Mtest.py Warning: TSTTRGBASE: Replacing logical path /ufs/goncalve/scratch/Mtest5/ by absolute physical path /net/amelia/export/scratch1/goncalve/Mtest5 Traceback (most recent call last): File "/ufs/goncalve/scratch/MonetDB/monetdb4/bin/Mtest.py", line 3364, in ? main(sys.argv) File "/ufs/goncalve/scratch/MonetDB/monetdb4/bin/Mtest.py", line 2947, in main os.environ[v] = env[v] KeyError: 'XQUERY_LOGDIR' What can be the problem? Regards, Romulo
On 01-12-2006 09:49:18 +0100, Romulo Goncalves wrote:
I updated all my system yesterday night.
Now I am trying to run the Mtest for M5-SQL and I got this error.
[goncalve@amelia src]$ Mtest_5_sql -rq Could not open file /ufs/goncalve/scratch/MonetDB/monetdb5/etc/MonetDB5.conf
What is your Mtest_5_sql alias expanding to?
Traceback (most recent call last): File "/ufs/goncalve/scratch/MonetDB/monetdb4/bin/Mtest.py", line 3364, in ? main(sys.argv) File "/ufs/goncalve/scratch/MonetDB/monetdb4/bin/Mtest.py", line 2947, in main os.environ[v] = env[v] KeyError: 'XQUERY_LOGDIR'
This is the Python way of saying: you try to use a key from a map that doesn't exist. This problem I had too, and you can resolve it (After Niels' fix) by adding --xquery_logdir=something to the Mtest call.
Fabian Groffen wrote:
On 01-12-2006 09:49:18 +0100, Romulo Goncalves wrote:
I updated all my system yesterday night.
Now I am trying to run the Mtest for M5-SQL and I got this error.
[goncalve@amelia src]$ Mtest_5_sql -rq Could not open file /ufs/goncalve/scratch/MonetDB/monetdb5/etc/MonetDB5.conf
What is your Mtest_5_sql alias expanding to? alias Mtest_5_sql='env PATH="/ufs/goncalve/scratch/MonetDB/monetdb4/bin:/ufs/goncalve/scratch/MonetDB/monetdb5/bin:${PATH}" Mtest.py -5 --TSTSRCBASE=/ufs/goncalve/MonetDB/SQL/sql/ --TSTBLDBASE=/ufs/goncalve/scratch/SQL/sql/build/ --TSTTRGBASE=/ufs/goncalve/scratch/Mtest5/ --SQL_PREFIX=/ufs/goncalve/scratch/MonetDB/monetdb5 --config=/ufs/goncalve/scratch/MonetDB/monetdb5/etc/MonetDB5.conf'
Traceback (most recent call last): File "/ufs/goncalve/scratch/MonetDB/monetdb4/bin/Mtest.py", line 3364, in ? main(sys.argv) File "/ufs/goncalve/scratch/MonetDB/monetdb4/bin/Mtest.py", line 2947, in main os.environ[v] = env[v] KeyError: 'XQUERY_LOGDIR'
This is the Python way of saying: you try to use a key from a map that doesn't exist. This problem I had too, and you can resolve it (After Niels' fix) by adding --xquery_logdir=something to the Mtest call. So this is enough to resolve the problem?
Regards, Romulo
------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Monetdb-developers mailing list Monetdb-developers@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-developers
On 01-12-2006 09:54:59 +0100, Romulo Goncalves wrote:
Fabian Groffen wrote:
On 01-12-2006 09:49:18 +0100, Romulo Goncalves wrote:
I updated all my system yesterday night.
Now I am trying to run the Mtest for M5-SQL and I got this error.
[goncalve@amelia src]$ Mtest_5_sql -rq Could not open file /ufs/goncalve/scratch/MonetDB/monetdb5/etc/MonetDB5.conf
What is your Mtest_5_sql alias expanding to? alias Mtest_5_sql='env PATH="/ufs/goncalve/scratch/MonetDB/monetdb4/bin:/ufs/goncalve/scratch/MonetDB/monetdb5/bin:${PATH}" Mtest.py -5 --TSTSRCBASE=/ufs/goncalve/MonetDB/SQL/sql/ --TSTBLDBASE=/ufs/goncalve/scratch/SQL/sql/build/ --TSTTRGBASE=/ufs/goncalve/scratch/Mtest5/ --SQL_PREFIX=/ufs/goncalve/scratch/MonetDB/monetdb5 --config=/ufs/goncalve/scratch/MonetDB/monetdb5/etc/MonetDB5.conf'
There is your problem. Should be: --config=/ufs/goncalve/scratch/MonetDB/monetdb5/etc/monetdb5.conf
This is the Python way of saying: you try to use a key from a map that doesn't exist. This problem I had too, and you can resolve it (After Niels' fix) by adding --xquery_logdir=something to the Mtest call. So this is enough to resolve the problem?
With my comment above, yes
participants (2)
-
Fabian Groffen
-
Romulo Goncalves