forked from github/server
fix pool test (GiveRestriction broke it).
- do not default to loading the E2 rules for tests, so GiveRestriction will not be set to a default value. - only load configuration if a ruleset has been defined.
This commit is contained in:
parent
3e93ebfcb7
commit
e9992db51c
|
@ -36,3 +36,4 @@ game-e3/reports/
|
||||||
*.log.*
|
*.log.*
|
||||||
tags
|
tags
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
|
.gdb_history
|
||||||
|
|
|
@ -12,7 +12,6 @@ locales = de,en
|
||||||
install = .
|
install = .
|
||||||
paths = lunit:scripts
|
paths = lunit:scripts
|
||||||
maxnmrs = 20
|
maxnmrs = 20
|
||||||
rules = e2
|
|
||||||
|
|
||||||
[editor]
|
[editor]
|
||||||
color = 1
|
color = 1
|
||||||
|
|
|
@ -2,9 +2,8 @@ local confdir = 'conf/'
|
||||||
if config.install then
|
if config.install then
|
||||||
confdir = config.install .. '/' .. confdir
|
confdir = config.install .. '/' .. confdir
|
||||||
end
|
end
|
||||||
rules=''
|
|
||||||
if config.rules then
|
if config.rules then
|
||||||
rules = config.rules .. '/'
|
local rules = config.rules .. '/'
|
||||||
end
|
|
||||||
assert(0 == read_xml(confdir .. rules .. 'config.xml', confdir .. rules .. 'catalog.xml'), "could not load XML data, did you compile with LIBXML2 ?")
|
assert(0 == read_xml(confdir .. rules .. 'config.xml', confdir .. rules .. 'catalog.xml'), "could not load XML data, did you compile with LIBXML2 ?")
|
||||||
assert(0 == eressea.config.read(rules .. 'config.json', confdir), "could not read JSON data")
|
assert(0 == eressea.config.read(rules .. 'config.json', confdir), "could not read JSON data")
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in New Issue