mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* added sql tests (linux only) * add mysql_escape_string module function its now possible to define a port for sql connection. (0 means default sql port like before) * escape string can fail, return error in this case * rebuild antlr * added docs
10 lines
No EOL
178 B
Text
10 lines
No EOL
178 B
Text
use os;
|
|
|
|
include "testutil";
|
|
var res := GetEnvironmentVariable( "POLCORE_TESTSQL" );
|
|
if ( res != "1" )
|
|
syslog( "NO SQL TESTS", 0 );
|
|
return IGNORE_TEST;
|
|
else
|
|
return 1;
|
|
endif |