diff options
author | click <none@none> | 2010-08-07 19:01:57 +0200 |
---|---|---|
committer | click <none@none> | 2010-08-07 19:01:57 +0200 |
commit | ce435f6d4f84462c0707bbc608d767648d5e99c3 (patch) | |
tree | dabac44fd559c925acf2171adb0ae3038f05ad7b /externals/mysql/extlib/dbug/tests.c | |
parent | 3cc24e0971f96b9ffa4032a154750e4224ea499d (diff) |
BuildSystem/VS: Remove now defunct an unmaintained buildfiles - use CMake for generating solutionfiles
--HG--
branch : trunk
Diffstat (limited to 'externals/mysql/extlib/dbug/tests.c')
-rw-r--r-- | externals/mysql/extlib/dbug/tests.c | 87 |
1 files changed, 0 insertions, 87 deletions
diff --git a/externals/mysql/extlib/dbug/tests.c b/externals/mysql/extlib/dbug/tests.c deleted file mode 100644 index d76266d34a3..00000000000 --- a/externals/mysql/extlib/dbug/tests.c +++ /dev/null @@ -1,87 +0,0 @@ -/* - A program to test DBUG features. Used by tests-t.pl -*/ - -char *push1=0; - -#include <my_global.h> /* This includes dbug.h */ -#include <my_pthread.h> -#include <string.h> - -const char *func3() -{ - DBUG_ENTER("func3"); - DBUG_RETURN(DBUG_EVALUATE("ret3", "ok", "ko")); -} - -void func2() -{ - const char *s; - DBUG_ENTER("func2"); - s=func3(); - DBUG_PRINT("info", ("s=%s", s)); - DBUG_VOID_RETURN; -} - -int func1() -{ - DBUG_ENTER("func1"); - func2(); - if (push1) - { - DBUG_PUSH(push1); - fprintf(DBUG_FILE, "=> push1\n"); - } - DBUG_RETURN(10); -} - -int main (int argc, char *argv[]) -{ - int i; -#ifdef DBUG_OFF - return 1; -#endif - if (argc == 1) - return 0; - -#if defined(HAVE_PTHREAD_INIT) && defined(THREAD) - pthread_init(); /* Must be called before DBUG_ENTER */ -#endif -#ifdef THREAD - my_thread_global_init(); -#endif - dup2(1, 2); - for (i = 1; i < argc; i++) - { - if (strncmp(argv[i], "--push1=", 8) == 0) - push1=argv[i]+8; - else - DBUG_PUSH (argv[i]); - } - { - DBUG_ENTER ("main"); - DBUG_PROCESS ("dbug-tests"); - func1(); - DBUG_EXECUTE_IF("dump", - { - char s[1000]; - DBUG_EXPLAIN(s, sizeof(s)-1); - DBUG_DUMP("dump", (uchar*)s, strlen(s)); - }); - DBUG_EXECUTE_IF("push", DBUG_PUSH("+t"); ); - DBUG_EXECUTE("execute", fprintf(DBUG_FILE, "=> execute\n"); ); - DBUG_EXECUTE_IF("set", DBUG_SET("+F"); ); - fprintf(DBUG_FILE, "=> evaluate: %s\n", - DBUG_EVALUATE("evaluate", "ON", "OFF")); - fprintf(DBUG_FILE, "=> evaluate_if: %s\n", - DBUG_EVALUATE_IF("evaluate_if", "ON", "OFF")); - DBUG_EXECUTE_IF("pop", DBUG_POP(); ); - { - char s[1000] __attribute__((unused)); - DBUG_EXPLAIN(s, sizeof(s)-1); - DBUG_PRINT("explain", ("dbug explained: %s", s)); - } - func2(); - DBUG_RETURN (0); - } -} |