Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
illuna-minetest
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
illuna-minetest
Commits
d7cef8d7
Commit
d7cef8d7
authored
13 years ago
by
Perttu Ahola
Browse files
Options
Downloads
Patches
Plain Diff
Add multiplayer test script
parent
4483fc7d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
util/test_multiplayer.sh
+43
-0
43 additions, 0 deletions
util/test_multiplayer.sh
with
43 additions
and
0 deletions
util/test_multiplayer.sh
0 → 100755
+
43
−
0
View file @
d7cef8d7
#!/bin/bash
dir
=
"
$(
cd
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
"
&&
pwd
)
"
gameid
=
minimal
minetest
=
$dir
/../bin/minetest
testspath
=
$dir
/../tests
worldpath
=
$testspath
/testworld_
$gameid
configpath
=
$testspath
/configs
logpath
=
$testspath
/log
conf_server
=
$configpath
/minetest.conf.multi.server
conf_client1
=
$configpath
/minetest.conf.multi.client1
conf_client2
=
$configpath
/minetest.conf.multi.client2
log_server
=
$logpath
/server.log
log_client1
=
$logpath
/client1.log
log_client2
=
$logpath
/client2.log
mkdir
-p
$worldpath
mkdir
-p
$configpath
mkdir
-p
$logpath
echo
-ne
'client1::shout,interact,settime,teleport,give
client2::shout,interact,settime,teleport,give
'
>
$worldpath
/auth.txt
echo
-ne
''
>
$conf_server
echo
-ne
'# client 1 config
screenW=500
screenH=380
name=client1
viewing_range_nodes_min=10
'
>
$conf_client1
echo
-ne
'# client 2 config
screenW=500
screenH=380
name=client2
viewing_range_nodes_min=10
'
>
$conf_client2
echo
$(
sleep
1
;
$minetest
--disable-unittests
--logfile
$log_client1
--config
$conf_client1
--go
--address
localhost
)
&
echo
$(
sleep
2
;
$minetest
--disable-unittests
--logfile
$log_client2
--config
$conf_client2
--go
--address
localhost
)
&
$minetest
--disable-unittests
--server
--logfile
$log_server
--config
$conf_server
--world
$worldpath
--gameid
$gameid
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment