mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 06:40:33 -04:00
- Convert to USES=mysql - Switch to options helpers - Silence mkdirs - Regenerate patches with `make makepatch`
19 lines
980 B
Text
19 lines
980 B
Text
--- CMakeLists.txt.orig 2016-05-16 19:20:14 UTC
|
|
+++ CMakeLists.txt
|
|
@@ -11,6 +11,7 @@ set(CDASH_DB_PASS "" CACHE STRING "Passw
|
|
set(CDASH_DB_PORT "" CACHE STRING "Port to connect to the database")
|
|
set(CDASH_DB_HOST "localhost" CACHE STRING "Hostname of the database server")
|
|
set(CDASH_DB_TYPE "mysql" CACHE STRING "Database type")
|
|
+set(CDASH_DB_NAME "cdash4simpletest" CACHE STRING "Database name")
|
|
option(CDASH_USE_SELENIUM "Should CDash use Selenium to test ajax functionality?" OFF)
|
|
option(CDASH_PRO "Are we testing CDashPro?" OFF)
|
|
set(CMake_SOURCE_DIR CACHE FILEPATH "Path to CMake source dir. Set this to import tests from CMake")
|
|
@@ -97,7 +98,7 @@ file(WRITE "${CDash_SOURCE_DIR}/cdash/co
|
|
//
|
|
// Some of the CDash tests also inject config settings below as tests run...
|
|
//
|
|
-$CDASH_DB_NAME = 'cdash4simpletest';
|
|
+$CDASH_DB_NAME = '${CDASH_DB_NAME}';
|
|
$CDASH_TESTING_MODE = true;
|
|
$CDASH_REGISTRATION_EMAIL_VERIFY = false;
|
|
$CDASH_TESTING_RENAME_LOGS = ${rename_logs};
|