X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver-testcase%2Fframework.qc;h=1735e1c11335f4e672c7908de65bd12ca6a231cb;hb=8637be6aa402775d486c01e3d34b0b40b6e6c885;hp=6ec1756ed643851ff2ed574822960e63a2e798f3;hpb=ace43a0b9fc339c80df65741952b07dd2bc5f52f;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server-testcase/framework.qc b/qcsrc/server-testcase/framework.qc index 6ec1756ed..1735e1c11 100644 --- a/qcsrc/server-testcase/framework.qc +++ b/qcsrc/server-testcase/framework.qc @@ -1,13 +1,13 @@ -void dprint(string s, ...) = #25; +void LOG_TRACE(string s, ...) = #25; string ftos(float f) = #26; string vtos(vector v) = #27; void error(string e) = #10; float test(); -void spawnfunc_worldspawn() +spawnfunc(worldspawn) { float r; - dprint("TESTCASE: START\n"); + LOG_TRACE("TESTCASE: START"); r = test(); if(r == 1) error("TESTCASE: PASS");