[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:
SkyratBot
2023-09-15 08:38:05 +02:00
committed by GitHub
parent 47d1f9fc6d
commit d3fd951bf8
8 changed files with 0 additions and 26 deletions

View File

@@ -63,7 +63,6 @@ jobs:
tools/build/build --ci dm -DCIBUILDING -DANSICOLORS -WError -NWTG0001 tools/build/build --ci dm -DCIBUILDING -DANSICOLORS -WError -NWTG0001
- name: Run Tests - name: Run Tests
run: | run: |
cp libbyond_sleeping_procs.so ~/.byond/bin/libbyond_sleeping_procs.so
source $HOME/BYOND/byond/bin/byondsetup source $HOME/BYOND/byond/bin/byondsetup
bash tools/ci/run_server.sh ${{ inputs.map }} bash tools/ci/run_server.sh ${{ inputs.map }}
- name: Upload screenshot tests - name: Upload screenshot tests

3
.gitignore vendored
View File

@@ -24,9 +24,6 @@
# Ignore compiled linux libs in the root folder, e.g. librust_g.so # Ignore compiled linux libs in the root folder, e.g. librust_g.so
/*.so /*.so
# Remove when removing byond_status
!/libbyond_sleeping_procs.so
#Ignore compiled files and other files generated during compilation. #Ignore compiled files and other files generated during compilation.
*.mdme *.mdme
*.mdme.* *.mdme.*

View File

@@ -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]"

View File

@@ -22,10 +22,6 @@
if(usr?.client) if(usr?.client)
usr.client.running_find_references = type 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].") log_reftracker("Beginning search for references to a [type].")
var/starting_time = world.time var/starting_time = world.time

View File

@@ -104,7 +104,6 @@
#include "bloody_footprints.dm" #include "bloody_footprints.dm"
#include "breath.dm" #include "breath.dm"
#include "burning.dm" #include "burning.dm"
#include "byond_status.dm"
#include "cable_powernets.dm" #include "cable_powernets.dm"
#include "card_mismatch.dm" #include "card_mismatch.dm"
#include "cardboard_cutouts.dm" #include "cardboard_cutouts.dm"

View File

@@ -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.

View File

@@ -453,7 +453,6 @@
#include "code\__HELPERS\atoms.dm" #include "code\__HELPERS\atoms.dm"
#include "code\__HELPERS\auxtools.dm" #include "code\__HELPERS\auxtools.dm"
#include "code\__HELPERS\bitflag_lists.dm" #include "code\__HELPERS\bitflag_lists.dm"
#include "code\__HELPERS\byond_status.dm"
#include "code\__HELPERS\cameras.dm" #include "code\__HELPERS\cameras.dm"
#include "code\__HELPERS\chat.dm" #include "code\__HELPERS\chat.dm"
#include "code\__HELPERS\chat_filter.dm" #include "code\__HELPERS\chat_filter.dm"