mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 09:42:29 +00:00
[MIRROR] Removes Sleep Printing Library [MDB IGNORE] (#23692)
* Removes Sleep Printing Library (#78324) ## About The Pull Request #76286, which spawned it, is dead. Don't need to hang onto it anymore per moth's instructions * Removes Sleep Printing Library --------- Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com>
This commit is contained in:
1
.github/workflows/run_integration_tests.yml
vendored
1
.github/workflows/run_integration_tests.yml
vendored
@@ -63,7 +63,6 @@ jobs:
|
||||
tools/build/build --ci dm -DCIBUILDING -DANSICOLORS -WError -NWTG0001
|
||||
- name: Run Tests
|
||||
run: |
|
||||
cp libbyond_sleeping_procs.so ~/.byond/bin/libbyond_sleeping_procs.so
|
||||
source $HOME/BYOND/byond/bin/byondsetup
|
||||
bash tools/ci/run_server.sh ${{ inputs.map }}
|
||||
- name: Upload screenshot tests
|
||||
|
||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -24,9 +24,6 @@
|
||||
# Ignore compiled linux libs in the root folder, e.g. librust_g.so
|
||||
/*.so
|
||||
|
||||
# Remove when removing byond_status
|
||||
!/libbyond_sleeping_procs.so
|
||||
|
||||
#Ignore compiled files and other files generated during compilation.
|
||||
*.mdme
|
||||
*.mdme.*
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
/// Returns the debug status, including sleeping procs.
|
||||
/// If this blame is older than a month, please revert the PR that added it.
|
||||
/proc/byond_status()
|
||||
if (world.system_type == UNIX)
|
||||
return LIBCALL("libbyond_sleeping_procs.so", "get_status")()
|
||||
else
|
||||
return "byond_status is not supported on [world.system_type]"
|
||||
@@ -22,10 +22,6 @@
|
||||
if(usr?.client)
|
||||
usr.client.running_find_references = type
|
||||
|
||||
#ifdef UNIT_TESTS
|
||||
log_reftracker("Currently sleeping procs [byond_status()]")
|
||||
#endif
|
||||
|
||||
log_reftracker("Beginning search for references to a [type].")
|
||||
|
||||
var/starting_time = world.time
|
||||
|
||||
@@ -104,7 +104,6 @@
|
||||
#include "bloody_footprints.dm"
|
||||
#include "breath.dm"
|
||||
#include "burning.dm"
|
||||
#include "byond_status.dm"
|
||||
#include "cable_powernets.dm"
|
||||
#include "card_mismatch.dm"
|
||||
#include "cardboard_cutouts.dm"
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
/// Tests the SUPPOSED TO BE TEMPORARY byond_status() proc for a useful format
|
||||
/datum/unit_test/byond_status
|
||||
|
||||
/datum/unit_test/byond_status/Run()
|
||||
if (world.system_type != UNIX)
|
||||
return
|
||||
|
||||
var/status = byond_status()
|
||||
TEST_ASSERT(findtext(status, "Sleeping procs"), "Invalid byond_status: [status]")
|
||||
Binary file not shown.
@@ -453,7 +453,6 @@
|
||||
#include "code\__HELPERS\atoms.dm"
|
||||
#include "code\__HELPERS\auxtools.dm"
|
||||
#include "code\__HELPERS\bitflag_lists.dm"
|
||||
#include "code\__HELPERS\byond_status.dm"
|
||||
#include "code\__HELPERS\cameras.dm"
|
||||
#include "code\__HELPERS\chat.dm"
|
||||
#include "code\__HELPERS\chat_filter.dm"
|
||||
|
||||
Reference in New Issue
Block a user