Changeset: c960545debf4 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=c960545debf4 Modified Files: sql/src/test/mapi/Tests/python_test_monetdb_sql_capabilities.SQL.sh sql/src/test/mapi/Tests/python_test_monetdb_sql_dbapi20.SQL.sh Branch: Feb2010 Log Message:
making scripts sh (bourne shell) compliant If we ask for /bin/sh as interpreter, we better also ensure that our scripts are indeed sh (bourne shell) compliant, i.e., do not use bash (Bourne-Again SHell) specific syntax. diffs (24 lines): diff -r 2734ee73439d -r c960545debf4 sql/src/test/mapi/Tests/python_test_monetdb_sql_capabilities.SQL.sh --- a/sql/src/test/mapi/Tests/python_test_monetdb_sql_capabilities.SQL.sh Sat Jun 26 15:50:28 2010 +0200 +++ b/sql/src/test/mapi/Tests/python_test_monetdb_sql_capabilities.SQL.sh Mon Jun 28 12:49:50 2010 +0200 @@ -3,6 +3,7 @@ # must be aligned with the installation directory chosen in # clients/src/python/test/Makefile.ag testpath="`monetdb-clients-config --pkglibdir`/Tests" -export PYTHONPATH=$testpath:$PYTHONPATH +PYTHONPATH=$testpath:$PYTHONPATH +export PYTHONPATH Mlog -x "python $testpath/capabilities_monetdb.py" diff -r 2734ee73439d -r c960545debf4 sql/src/test/mapi/Tests/python_test_monetdb_sql_dbapi20.SQL.sh --- a/sql/src/test/mapi/Tests/python_test_monetdb_sql_dbapi20.SQL.sh Sat Jun 26 15:50:28 2010 +0200 +++ b/sql/src/test/mapi/Tests/python_test_monetdb_sql_dbapi20.SQL.sh Mon Jun 28 12:49:50 2010 +0200 @@ -3,6 +3,7 @@ # must be aligned with the installation directory chosen in # clients/src/python/test/Makefile.ag testpath="`monetdb-clients-config --pkglibdir`/Tests" -export PYTHONPATH=$testpath:$PYTHONPATH +PYTHONPATH=$testpath:$PYTHONPATH +export PYTHONPATH Mlog -x "python $testpath/dbapi20_monetdb.py" _______________________________________________ Checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
