summaryrefslogtreecommitdiffstats
path: root/pts-core/functions/pts-init.php
diff options
context:
space:
mode:
Diffstat (limited to 'pts-core/functions/pts-init.php')
-rw-r--r--pts-core/functions/pts-init.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/pts-core/functions/pts-init.php b/pts-core/functions/pts-init.php
index 805d551..4f4c8c9 100644
--- a/pts-core/functions/pts-init.php
+++ b/pts-core/functions/pts-init.php
@@ -71,6 +71,15 @@ function pts_init()
else
define("IS_DEBUG_MODE", false);
+ // Self-Contained Test Profile
+ if(($sctp_file = getenv("SCTP_FILE")) != FALSE && is_file($sctp_file))
+ {
+ define("SCTP_FILE", $sctp_file);
+ define("IS_SCTP_MODE", true);
+ }
+ else
+ define("IS_SCTP_MODE", false);
+
// Operating System Detection
$supported_operating_systems = array("Linux", array("Solaris", "Sun"), "FreeBSD", "BSD");
$uname_s = strtolower(trim(shell_exec("uname -s")));