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
This commit is contained in:
LemonInTheDark
2023-09-14 18:04:10 -06:00
committed by GitHub
parent 87a9c9ade7
commit 0e723b5bb7
8 changed files with 0 additions and 26 deletions
@@ -60,7 +60,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
View File
@@ -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.*
-7
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]"
@@ -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
-1
View File
@@ -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"
-9
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.
-1
View File
@@ -371,7 +371,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"