diff options
author | jak1 <jak1@themanaworld.org> | 2024-02-16 14:50:14 -0300 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2025-02-26 21:30:46 +0100 |
commit | cfbf2d1618f273e766f576f33099d4ecb1e27610 (patch) | |
tree | f445e5df2bf6c1f0667e1b5a9511bf03cf7ec046 /tools/ci | |
parent | 190851b99b7ac3548f8db3637ddf5a64ba298051 (diff) | |
download | mv-cfbf2d1618f273e766f576f33099d4ecb1e27610.tar.gz mv-cfbf2d1618f273e766f576f33099d4ecb1e27610.tar.bz2 mv-cfbf2d1618f273e766f576f33099d4ecb1e27610.tar.xz mv-cfbf2d1618f273e766f576f33099d4ecb1e27610.zip |
Rename log file manaplus.log -> manaverse.log
(Fedja) I'm suspecting that some CI will break on this.
Split off from !45: Rename the program from ManaPlus to ManaVerse.
****
mana/plus!135
Co-authored-by: Fedja Beader <fedja@protonmail.ch>
Diffstat (limited to 'tools/ci')
-rwxr-xr-x | tools/ci/scripts/runtest.sh | 8 | ||||
-rwxr-xr-x | tools/ci/scripts/runtests.sh | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/tools/ci/scripts/runtest.sh b/tools/ci/scripts/runtest.sh index e629fc514..622e04da0 100755 --- a/tools/ci/scripts/runtest.sh +++ b/tools/ci/scripts/runtest.sh @@ -18,7 +18,7 @@ function check_is_run { } function check_assert { - grep -A 20 "Assert:" "${HOME}/.local/share/mana/manaplus.log" + grep -A 20 "Assert:" "${HOME}/.local/share/mana/manaverse.log" if [ "$?" == 0 ]; then echo "Assert found in log" exit 1 @@ -31,9 +31,9 @@ function wait_for_servers_list { echo "wait for servers list ${n}" check_is_run # check here - grep "Skipping servers list update" "${HOME}/.local/share/mana/manaplus.log" && return - grep "Servers list updated" "${HOME}/.local/share/mana/manaplus.log" && return - grep "Error: servers list updating error" "${HOME}/.local/share/mana/manaplus.log" + grep "Skipping servers list update" "${HOME}/.local/share/mana/manaverse.log" && return + grep "Servers list updated" "${HOME}/.local/share/mana/manaverse.log" && return + grep "Error: servers list updating error" "${HOME}/.local/share/mana/manaverse.log" if [ "$?" == 0 ]; then echo "Servers list downloading error" exit 1 diff --git a/tools/ci/scripts/runtests.sh b/tools/ci/scripts/runtests.sh index 1263521f9..1afe5815f 100755 --- a/tools/ci/scripts/runtests.sh +++ b/tools/ci/scripts/runtests.sh @@ -26,8 +26,8 @@ while true; do rm "/root/.config/mana/mana/config.xml" rm "${HOME}/.config/mana/mana/serverlistplus.xml" rm "/root/.config/mana/mana/serverlistplus.xml" - rm "${HOME}/.local/share/mana/manaplus.log" - rm "/root/.local/share/mana/manaplus.log" + rm "${HOME}/.local/share/mana/manaverse.log" + rm "/root/.local/share/mana/manaverse.log" ./tools/ci/scripts/runtest.sh if [ "$?" != 0 ]; then exit 1 @@ -45,8 +45,8 @@ echo "existing config runs" n=0 while true; do echo "run test ${n}" - rm "${HOME}/.local/share/mana/manaplus.log" - rm "/root/.local/share/mana/manaplus.log" + rm "${HOME}/.local/share/mana/manaverse.log" + rm "/root/.local/share/mana/manaverse.log" ./tools/ci/scripts/runtest.sh if [ "$?" != 0 ]; then exit 1 |