mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
10 lines
178 B
Text
10 lines
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
|