mirror of
https://github.com/tbamud/tbamud.git
synced 2026-01-07 01:48:49 +01:00
Added readme for creating tests. Found and fixed interesting bugs in destroy_db when there is no world. renamed the testfile to testrunner to make it clear it is actually running the texts. Also, made testrunner more focused on the actual running of the tests. Added debug target to test makefile.
21 lines
No EOL
471 B
Markdown
21 lines
No EOL
471 B
Markdown
Files for tbaMUD.
|
|
|
|
---
|
|
|
|
## To build
|
|
|
|
1. run configure: `./configure`
|
|
2. build the code: `cd src && make`
|
|
3. run the mud: `cd ..; bin/circle 1234`
|
|
4. connect via telnet to port 1234.
|
|
|
|
Read more in the doc/ folder
|
|
|
|
## To run the tests
|
|
|
|
1. clone the munit library into src/munit. It is registered as a submodule in git
|
|
|
|
`git submodule init && git submodule update`
|
|
|
|
2. install the cmocka-library: `sudo apt install libcmocka-dev`
|
|
3. `./config.status && cd src && make test` |