[ROSAUTOTEST] Use the new header with SPDX license identifier and remove dead source files.

svn path=/trunk/; revision=75991
This commit is contained in:
Colin Finck 2017-09-29 18:13:54 +00:00
parent abc37007a0
commit bb0896b823
36 changed files with 76 additions and 88 deletions

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class for managing all the configuration parameters * PURPOSE: Class for managing all the configuration parameters
* COPYRIGHT: Copyright 2009-2011 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009-2011 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class for managing all the configuration parameters * PURPOSE: Class for managing all the configuration parameters
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
class CConfiguration class CConfiguration

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Fatal program exception with automatically added information * PURPOSE: Fatal program exception with automatically added information
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Fatal program exception with automatically added information * PURPOSE: Fatal program exception with automatically added information
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
class CFatalException class CFatalException

View file

@ -1,14 +1,14 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Empty exception thrown when the parameter processor detects an invalid parameter * PURPOSE: Empty exception thrown when the parameter processor detects an invalid parameter
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"
/** /**
* Constructs an empty CInvalidParameterException object, which is catched in wmain as an exception. * Constructs an empty CInvalidParameterException object, which is caught in wmain as an exception.
*/ */
CInvalidParameterException::CInvalidParameterException() CInvalidParameterException::CInvalidParameterException()
{ {

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Empty exception thrown when the parameter processor detects an invalid parameter * PURPOSE: Empty exception thrown when the parameter processor detects an invalid parameter
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
class CInvalidParameterException class CInvalidParameterException

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class implementing a journaled test list for the Crash Recovery feature * PURPOSE: Class implementing a journaled test list for the Crash Recovery feature
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class implementing a journaled test list for the Crash Recovery feature * PURPOSE: Class implementing a journaled test list for the Crash Recovery feature
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
class CJournaledTestList : public CTestList class CJournaledTestList : public CTestList

View file

@ -10,8 +10,6 @@ list(APPEND SOURCE
CPipedProcess.cpp CPipedProcess.cpp
CProcess.cpp CProcess.cpp
CSimpleException.cpp CSimpleException.cpp
CTest.cpp
CTestInfo.cpp
CTestList.cpp CTestList.cpp
CVirtualTestList.cpp CVirtualTestList.cpp
CWebService.cpp CWebService.cpp

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class that managed an unidirectional anonymous byte stream pipe * PURPOSE: Class that manages an unidirectional anonymous byte stream pipe
* COPYRIGHT: Copyright 2015 Thomas Faber <thomas.faber@reactos.org> * COPYRIGHT: Copyright 2015 Thomas Faber (thomas.faber@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class that managed an unidirectional anonymous byte stream pipe * PURPOSE: Class that manages an unidirectional anonymous byte stream pipe
* COPYRIGHT: Copyright 2015 Thomas Faber <thomas.faber@reactos.org> * COPYRIGHT: Copyright 2015 Thomas Faber (thomas.faber@reactos.org)
*/ */
class CPipe class CPipe

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class that creates a process and redirects its output to a pipe * PURPOSE: Class that creates a process and redirects its output to a pipe
* COPYRIGHT: Copyright 2015 Thomas Faber <thomas.faber@reactos.org> * COPYRIGHT: Copyright 2015 Thomas Faber (thomas.faber@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class that creates a process and redirects its output to a pipe * PURPOSE: Class that creates a process and redirects its output to a pipe
* COPYRIGHT: Copyright 2015 Thomas Faber <thomas.faber@reactos.org> * COPYRIGHT: Copyright 2015 Thomas Faber (thomas.faber@reactos.org)
*/ */
class CPipedProcess : public CProcess class CPipedProcess : public CProcess

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class able to create a new process and closing its handles on destruction (exception-safe) * PURPOSE: Class able to create a new process and closing its handles on destruction (exception-safe)
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class able to create a new process and closing its handles on destruction (exception-safe) * PURPOSE: Class able to create a new process and closing its handles on destruction (exception-safe)
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
class CProcess class CProcess

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Simple exception containing just a message * PURPOSE: Simple exception containing just a message
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Simple exception containing just a message * PURPOSE: Simple exception containing just a message
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
class CSimpleException class CSimpleException

View file

@ -1,8 +0,0 @@
/*
* PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation
* PURPOSE: Class implementing a generic Test, needs to be used by a derived class
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org>
*/
#include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class implementing a generic Test, needs to be used by a derived class * PURPOSE: Class implementing a generic Test, needs to be used by a derived class
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
class CTest class CTest

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Simple exception during test execution that can be skipped over * PURPOSE: Simple exception during test execution that can be skipped over
* COPYRIGHT: Copyright 2015 Thomas Faber <thomas.faber@reactos.org> * COPYRIGHT: Copyright 2015 Thomas Faber (thomas.faber@reactos.org)
*/ */
class CTestException : public CSimpleException class CTestException : public CSimpleException

View file

@ -1,8 +0,0 @@
/*
* PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation
* PURPOSE: Class implementing a bucket for Test information
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org>
*/
#include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class implementing a bucket for Test information * PURPOSE: Class implementing a bucket for Test information
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
class CTestInfo class CTestInfo

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class implementing a generic Test list, needs to be used by a derived class * PURPOSE: Class implementing a generic Test list, needs to be used by a derived class
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class implementing a generic Test list, needs to be used by a derived class * PURPOSE: Class implementing a generic Test list, needs to be used by a derived class
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
class CTestList class CTestList

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class implementing a virtual test list for the tests to be ran * PURPOSE: Class implementing a virtual test list for the tests to be ran
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class implementing a virtual test list for the tests to be ran * PURPOSE: Class implementing a virtual test list for the tests to be ran
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
class CVirtualTestList : public CTestList class CVirtualTestList : public CTestList

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class implementing the interface to the "testman" Web Service * PURPOSE: Class implementing the interface to the "testman" Web Service
* COPYRIGHT: Copyright 2009-2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009-2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class implementing the interface to the "testman" Web Service * PURPOSE: Class implementing the interface to the "testman" Web Service
* COPYRIGHT: Copyright 2009-2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009-2015 Colin Finck (colin@reactos.org)
*/ */
class CWebService class CWebService

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class implementing functions for handling Wine tests * PURPOSE: Class implementing functions for handling Wine tests
* COPYRIGHT: Copyright 2009-2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009-2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Class implementing functions for handling Wine tests * PURPOSE: Class implementing functions for handling Wine tests
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
class CWineTest : public CTest class CWineTest : public CTest

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Template similar to std::auto_ptr for arrays * PURPOSE: Template similar to std::auto_ptr for arrays
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
*/ */
template<typename Type> template<typename Type>

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Main implementation file * PURPOSE: Main implementation file
* COPYRIGHT: Copyright 2008-2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2008-2009 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,9 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GPL - See COPYING in the top level directory * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* FILE: base/applications/rapps/misc.c * PURPOSE: Functions for writing to the Event Log
* PURPOSE: Misc functions * COPYRIGHT: Copyright 2009 Dmitry Chapyshev (dmitry@reactos.org)
* PROGRAMMERS: Dmitry Chapyshev (dmitry@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,3 +1,10 @@
/*
* PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Main header file
* COPYRIGHT: Copyright 2009-2015 Colin Finck (colin@reactos.org)
*/
#ifndef _ROSAUTOTEST_H_ #ifndef _ROSAUTOTEST_H_
#define _ROSAUTOTEST_H_ #define _ROSAUTOTEST_H_

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Helper function for shutting down the system * PURPOSE: Helper function for shutting down the system
* COPYRIGHT: Copyright 2008-2009 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2008-2009 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Automatic Testing Utility * PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Various helper functions * PURPOSE: Various helper functions
* COPYRIGHT: Copyright 2008-2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2008-2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"