Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libSDL
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PocketInsanity
libSDL
Commits
116f983b
Commit
116f983b
authored
Aug 06, 2011
by
Markus Kauppila
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated the boilerplate files such as INSTALL and README.
parent
ac5e0959
Changes
12
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
160 additions
and
1034 deletions
+160
-1034
COPYING
test/test-automation/COPYING
+18
-668
INSTALL
test/test-automation/INSTALL
+15
-362
README
test/test-automation/README
+7
-2
configure.ac
test/test-automation/configure.ac
+1
-1
SDL_test.c
test/test-automation/src/libtest/SDL_test.c
+1
-1
fuzzer.c
test/test-automation/src/libtest/fuzzer/fuzzer.c
+19
-0
logger_helpers.c
test/test-automation/src/libtest/logger_helpers.c
+19
-0
logger_helpers.h
test/test-automation/src/libtest/logger_helpers.h
+20
-0
plain_logger.c
test/test-automation/src/libtest/plain_logger.c
+19
-0
plain_logger.h
test/test-automation/src/libtest/plain_logger.h
+20
-0
xml_logger.h
test/test-automation/src/libtest/xml_logger.h
+20
-0
logger.h
test/test-automation/src/runner/logger.h
+1
-0
No files found.
test/test-automation/COPYING
View file @
116f983b
This diff is collapsed.
Click to expand it.
test/test-automation/INSTALL
View file @
116f983b
This diff is collapsed.
Click to expand it.
test/test-automation/README
View file @
116f983b
/*! \mainpage Documentation for SDL test harness
\section
I
ntroduction
\section
Brief i
ntroduction
Coming up.
This is doxygen-generated docs for SDL test harness.
Pull the project with Mercurial:
hg clone https://Markusk@bitbucket.org/Markusk/sdl-gsoc/wiki
For more information: https://bitbucket.org/Markusk/sdl-gsoc/wiki/Home
*/
test/test-automation/configure.ac
View file @
116f983b
...
...
@@ -49,4 +49,4 @@ echo ""
echo "========================================"
echo ""
echo "./configure ready!"
echo "you're ready to run: 'make
libtest && make
'"
echo "you're ready to run: 'make'"
test/test-automation/src/libtest/SDL_test.c
View file @
116f983b
/*
/*
Copyright (C) 2011 Markus Kauppila <markus.kauppila@gmail.com>
This software is provided 'as-is', without any express or implied
...
...
test/test-automation/src/libtest/fuzzer/fuzzer.c
View file @
116f983b
/*
Copyright (C) 2011 Markus Kauppila <markus.kauppila@gmail.com>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include <stdio.h>
#include <stdlib.h>
...
...
test/test-automation/src/libtest/logger_helpers.c
View file @
116f983b
/*
Copyright (C) 2011 Markus Kauppila <markus.kauppila@gmail.com>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include <SDL/SDL.h>
...
...
test/test-automation/src/libtest/logger_helpers.h
View file @
116f983b
/*
Copyright (C) 2011 Markus Kauppila <markus.kauppila@gmail.com>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#ifndef _LOGGER_HELPERS_G
#define _LOGGER_HELPERS_G
...
...
test/test-automation/src/libtest/plain_logger.c
View file @
116f983b
/*
Copyright (C) 2011 Markus Kauppila <markus.kauppila@gmail.com>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#ifndef _PLAIN_LOGGER
#define _PLAIN_LOGGER
...
...
test/test-automation/src/libtest/plain_logger.h
View file @
116f983b
/*
Copyright (C) 2011 Markus Kauppila <markus.kauppila@gmail.com>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#ifndef _PLAIN_LOGGER_H
#define _PLAIN_LOGGER_H
...
...
test/test-automation/src/libtest/xml_logger.h
View file @
116f983b
/*
Copyright (C) 2011 Markus Kauppila <markus.kauppila@gmail.com>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#ifndef _XML_LOGGER_H
#define _XML_LOGGER_H
...
...
test/test-automation/src/runner/logger.h
View file @
116f983b
...
...
@@ -33,6 +33,7 @@ typedef enum LogLevel {
#define LOGGER_DEFAULT_LEVEL LOGGER_TERSE
//! Contains information for the logger
typedef
struct
LoggerData
{
//! If enabled logger will write to stdout instead of file
int
stdoutEnabled
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment