summaryrefslogtreecommitdiff
path: root/libmodman/test/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libmodman/test/main.cpp')
-rw-r--r--libmodman/test/main.cpp72
1 files changed, 0 insertions, 72 deletions
diff --git a/libmodman/test/main.cpp b/libmodman/test/main.cpp
deleted file mode 100644
index cf930c1..0000000
--- a/libmodman/test/main.cpp
+++ /dev/null
@@ -1,72 +0,0 @@
-/*******************************************************************************
- * libmodman - A library for extending applications
- * Copyright (C) 2009 Nathaniel McCallum <nathaniel@natemccallum.com>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- ******************************************************************************/
-
-#include <iostream>
-#include <vector>
-#include <cstring>
-#ifdef WIN32
-#ifdef SYMB
-#include <winsock2.h>
-#endif
-#endif
-
-#include "main.hpp"
-
-int main(int argc, const char** argv) {
- module_manager mm;
-#ifdef WIN32
-#ifdef SYMB
- void* symb = recv;
-#endif
-#endif
-
- if (argc < 2) {
- cout << "Usage: " << argv[0] << " MODULEDIR MODNAME ..." << endl;
- return 1;
- }
-
- if (!mm.register_type<EXTTYPE>()) {
- cout << "Unable to register type!" << endl;
- return 2;
- }
-
- if (!mm.load_dir(argv[1]) && argc > 2) {
- if (!mm.load_dir(argv[1], false)) {
- cout << "Unable to load modules!" << endl;
- return 3;
- }
- }
-
- vector<EXTTYPE*> exts = mm.get_extensions<EXTTYPE>();
- if (exts.size() != (unsigned int) argc - 2) {
- cout << "Wrong number of extensions found!" << endl;
- return 4;
- }
-
- for (unsigned int i=0 ; i < exts.size() ; i++) {
- if (!strstr(typeid(*(exts[i])).name(), argv[i+2])) {
- cout << "Unable to find extension! Here's the list:" << endl;
- for (unsigned int j=0 ; j < exts.size() ; j++)
- cout << "\t" << typeid(*(exts[j])).name() << endl;
- return 5;
- }
- }
-
- return 0;
-}