Commit 383ce6ba authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove old testsuite

The first three modules are empty.
The last one is so out of date that it has become totally useless.
parent a5c0ce11
...@@ -4702,24 +4702,6 @@ fi ...@@ -4702,24 +4702,6 @@ fi
AC_LANG_POP(C++) AC_LANG_POP(C++)
AM_CONDITIONAL(BUILD_MOZILLA,${mozilla}) AM_CONDITIONAL(BUILD_MOZILLA,${mozilla})
dnl
dnl test plugins
dnl
AC_ARG_ENABLE(testsuite,
[ --enable-testsuite build test modules (default disabled)])
if test "${enable_testsuite}" = "yes"
then
TESTS="test1 test2 test3 test4"
dnl we define those so that bootstrap sets the right linker
VLC_ADD_CXXFLAGS([test2],[])
VLC_ADD_OBJCFLAGS([test3],[])
dnl this one is needed until automake knows what to do
VLC_ADD_LIBS([test3],[-lobjc])
VLC_ADD_PLUGIN([test1 test2 test3 test4])
fi
dnl dnl
dnl Plugin and builtin checks dnl Plugin and builtin checks
dnl dnl
...@@ -4900,7 +4882,6 @@ AC_CONFIG_FILES([ ...@@ -4900,7 +4882,6 @@ AC_CONFIG_FILES([
modules/misc/dummy/Makefile modules/misc/dummy/Makefile
modules/misc/lua/Makefile modules/misc/lua/Makefile
modules/misc/notify/Makefile modules/misc/notify/Makefile
modules/misc/testsuite/Makefile
modules/misc/playlist/Makefile modules/misc/playlist/Makefile
modules/misc/osd/Makefile modules/misc/osd/Makefile
modules/misc/stats/Makefile modules/misc/stats/Makefile
......
...@@ -320,10 +320,6 @@ $Id$ ...@@ -320,10 +320,6 @@ $Id$
* telepathy: Telepathy Presence information using MissionControl notification * telepathy: Telepathy Presence information using MissionControl notification
* telnet: Telnet control interface for VideoLAN Media Manager * telnet: Telnet control interface for VideoLAN Media Manager
* telx: teletext subtitles decoder * telx: teletext subtitles decoder
* test1: Empty C module
* test2: Empty C++ module
* test3: Empty Objective C module
* test4: Stress test module
* theora: a theora video decoder/packetizer/encoder using the libtheora library * theora: a theora video decoder/packetizer/encoder using the libtheora library
* time: Overlays the current time * time: Overlays the current time
* transform: filter for horizontal and vertical image flips and 90° rotations * transform: filter for horizontal and vertical image flips and 90° rotations
......
BASE_SUBDIRS = dummy notify testsuite playlist stats osd xml BASE_SUBDIRS = dummy notify playlist stats osd xml
EXTRA_SUBDIRS = lua EXTRA_SUBDIRS = lua
SUBDIRS = $(BASE_SUBDIRS) SUBDIRS = $(BASE_SUBDIRS)
......
SOURCES_test1 = test1.c
SOURCES_test2 = test2.cpp
SOURCES_test3 = test3.m
SOURCES_test4 = test4.c
/*****************************************************************************
* test1.c : Empty C module for vlc
*****************************************************************************
* Copyright (C) 2000-2001 the VideoLAN team
* $Id$
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
/*****************************************************************************
* Preamble
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h>
#include <vlc_plugin.h>
/*****************************************************************************
* Module descriptor.
*****************************************************************************/
vlc_module_begin ()
set_description( N_("C module that does nothing") )
vlc_module_end ()
/*****************************************************************************
* test2.cpp : Empty C++ module for vlc
*****************************************************************************
* Copyright (C) 2000-2001 the VideoLAN team
* $Id$
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
/*****************************************************************************
* Preamble
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <string>
/*****************************************************************************
* Module descriptor.
*****************************************************************************/
vlc_module_begin ()
/* Minimal C++ usage */
std::string description = "C++ module that does nothing";
set_description( (char*)_( description.c_str() ) )
vlc_module_end ()
/*****************************************************************************
* test3.m : Empty Objective C module for vlc
*****************************************************************************
* Copyright (C) 2000-2001 the VideoLAN team
* $Id$
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
/*****************************************************************************
* Preamble
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <objc/Object.h>
/*****************************************************************************
* The description class
*****************************************************************************/
@class Desc;
@interface Desc : Object
+ (const char*) ription;
@end
@implementation Desc
+ (const char*) ription
{
return "Objective C module that does nothing";
}
@end
/*****************************************************************************
* Module descriptor.
*****************************************************************************/
vlc_module_begin ()
set_description( N_([Desc ription]) )
vlc_module_end ()
This diff is collapsed.
...@@ -969,10 +969,6 @@ modules/misc/stats/encoder.c ...@@ -969,10 +969,6 @@ modules/misc/stats/encoder.c
modules/misc/stats/stats.c modules/misc/stats/stats.c
modules/misc/stats/stats.h modules/misc/stats/stats.h
modules/misc/svg.c modules/misc/svg.c
modules/misc/testsuite/test1.c
modules/misc/testsuite/test2.cpp
modules/misc/testsuite/test3.m
modules/misc/testsuite/test4.c
modules/misc/text_renderer.h modules/misc/text_renderer.h
modules/misc/win32text.c modules/misc/win32text.c
modules/misc/xml/libxml.c modules/misc/xml/libxml.c
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment