summaryrefslogtreecommitdiff
path: root/tests/aix_hack_for_main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/aix_hack_for_main.cpp')
-rw-r--r--tests/aix_hack_for_main.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/aix_hack_for_main.cpp b/tests/aix_hack_for_main.cpp
deleted file mode 100644
index 1f962c360af..00000000000
--- a/tests/aix_hack_for_main.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-// $Id$
-
-//=============================================================================
-/**
- * @file aix_hack_for_main.cpp
- *
- * $Id$
- *
- * This file is simply to force the Makefile to compile Main.cpp
- * before it's needed in a test program that requires templates.
- * Why is this needed? Because AIX Visual Age C++ has a template
- * instantiation mechanism unlike any other in the way it remembers
- * where templates are needed. We've previously worked around this
- * by forcibly deleting the tempinc directory before compiling each
- * test's source file. This worked because every test was in one file.
- * When Main.cpp was added, this broke the scheme. This file simply
- * gets Main.cpp to compile, then the resulting Main.o can be reused
- * for each test, and it's again safe to delete the tempinc directory
- * before each test compile.
- * Hopefully, MPC will save us from this wretchedness...
- *
- * @author Steve Huston <shuston@riverace.com>
- */
-//=============================================================================
-
-#include "test_config.h"
-
-int
-run_main (int, ACE_TCHAR *[])
-{
- return 0;
-}