mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-06 17:41:04 +00:00
Rename to Luanti (#15294)
The new header intentionally isn't in MTG stone design (or any other MTG-esque design), since we want to distance Luanti and MTG from each other. The font "undefined medium" (https://undefined-medium.com/) was used. ASCII art generated by https://patorjk.com/software/taag/#p=display&f=Graffiti&t=luanti https://github.com/minetest/minetest/pull/11952#issuecomment-1013364703 --------- Co-authored-by: sfan5 <sfan5@live.de>
This commit is contained in:
parent
b7073df68c
commit
4b90e582b4
118 changed files with 206 additions and 179 deletions
|
@ -1,12 +1,12 @@
|
|||
#!/bin/bash
|
||||
dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
gameid=${gameid:-devtest}
|
||||
minetest=$dir/../bin/minetest
|
||||
executable=$dir/../bin/luanti
|
||||
testspath=$dir/../tests
|
||||
conf_server=$testspath/server.conf
|
||||
worldpath=$testspath/world
|
||||
|
||||
[ -e "$minetest" ] || { echo "executable $minetest missing"; exit 1; }
|
||||
[ -e "$executable" ] || { echo "executable $executable missing"; exit 1; }
|
||||
|
||||
write_config () {
|
||||
printf '%s\n' >"$conf_server" \
|
||||
|
@ -31,14 +31,14 @@ ln -s "$dir/helper_mod" "$worldpath/worldmods/"
|
|||
|
||||
args=(--server --config "$conf_server" --world "$worldpath" --gameid $gameid)
|
||||
|
||||
# make sure we can tell apart sanitizer and minetest errors
|
||||
# make sure we can tell apart sanitizer and luanti errors
|
||||
export ASAN_OPTIONS="exitcode=42"
|
||||
export MSAN_OPTIONS="exitcode=42"
|
||||
|
||||
# see helper_mod/init.lua for the different types
|
||||
for n in $(seq 1 4); do
|
||||
write_config error_type=$n
|
||||
run "$minetest" "${args[@]}"
|
||||
run "$executable" "${args[@]}"
|
||||
echo "---------------"
|
||||
done
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue