From 4b9289cfb260f4bcecaf23a810584ef6ef8e8501 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 30 Mar 2011 22:33:41 +0000 Subject: Ok, string stuff is working much, much better, a load of new unit tests have been added, and I deleted a whole slew of stupid old tests that I don't need. --- src/tests/tracer.cpp | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 src/tests/tracer.cpp (limited to 'src/tests/tracer.cpp') diff --git a/src/tests/tracer.cpp b/src/tests/tracer.cpp deleted file mode 100644 index 703fa1a..0000000 --- a/src/tests/tracer.cpp +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (C) 2007-2011 Xagasoft, All rights reserved. - * - * This file is part of the libbu++ library and is released under the - * terms of the license contained in the file LICENSE. - */ - - -#define BU_TRACE -#include "bu/trace.h" - -void doThing3( int x, const char *bob, void *p ) -{ - TRACE( x, bob, p ); -} - -void doThing2( int x, const char *bob ) -{ - TRACE( x, bob ); -} - -void doThing( int8_t x ) -{ - TRACE( x ); -} - -int main( int argc, char *argv[] ) -{ - TRACE( argc, argv ); - doThing( 54 ); - doThing2( 128, "Hello" ); - doThing3( 266, "Goodbye", argv ); - - return 0; -} - -- cgit v1.2.3