mirror of
https://github.com/MCLx86/xtreemtest.git
synced 2025-12-15 19:15:32 +01:00
Initial commit
This commit is contained in:
30
util/stress_mapgen.sh
Normal file
30
util/stress_mapgen.sh
Normal file
@@ -0,0 +1,30 @@
|
||||
#!/bin/bash
|
||||
dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
gameid=${gameid:-devtest}
|
||||
minetest=$dir/../bin/minetest
|
||||
testspath=$dir/../tests
|
||||
conf_server=$testspath/server.conf
|
||||
worldpath=$testspath/world
|
||||
|
||||
run () {
|
||||
if [ -n "$PERF" ]; then
|
||||
perf record -z --call-graph dwarf -- "$@"
|
||||
else
|
||||
"$@"
|
||||
fi
|
||||
}
|
||||
|
||||
[ -e "$minetest" ] || { echo "executable $minetest missing"; exit 1; }
|
||||
|
||||
rm -rf "$worldpath"
|
||||
mkdir -p "$worldpath/worldmods"
|
||||
|
||||
settings=(sqlite_synchronous=0 helper_mode=mapgen)
|
||||
[ -n "$PROFILER" ] && settings+=(profiler_print_interval=15)
|
||||
printf '%s\n' "${settings[@]}" >"$testspath/server.conf" \
|
||||
|
||||
ln -s "$dir/helper_mod" "$worldpath/worldmods/"
|
||||
|
||||
args=(--config "$conf_server" --world "$worldpath" --gameid $gameid)
|
||||
[ -n "$PROFILER" ] && args+=(--verbose)
|
||||
run "$minetest" --server "${args[@]}"
|
||||
Reference in New Issue
Block a user