Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Testing out implementation for skipping unsupported test
Browse files Browse the repository at this point in the history
automatically.
  • Loading branch information
mkauppila committed Jul 18, 2011
1 parent bbc1231 commit 23a3a99
Show file tree
Hide file tree
Showing 7 changed files with 101 additions and 10 deletions.
4 changes: 2 additions & 2 deletions include/SDL_revision.h
@@ -1,2 +1,2 @@
#define SDL_REVISION "hg-5546:cd2167525827"
#define SDL_REVISION_NUMBER 5546
#define SDL_REVISION "hg-5659:3f908b34b645"
#define SDL_REVISION_NUMBER 5659
2 changes: 1 addition & 1 deletion test/test-automation/Makefile.am
Expand Up @@ -3,7 +3,7 @@ ACLOCAL_AMFLAGS = -I acinclude -I build-scripts
SUBDIRS = testdummy testrect testplatform testaudio testsurface

bin_PROGRAMS = runner
runner_SOURCES = runner.c SDL_test.c xml_logger.c plain_logger.c xml.c logger_helpers.c
runner_SOURCES = runner.c SDL_test.c xml_logger.c plain_logger.c xml.c logger_helpers.c support.c
runner_CLAGS = -W -Wall -Wextra -g `sdl-config --cflags` -DSDL_NO_COMPAT
runner_LDFLAGS = `sdl-config --libs`

Expand Down
6 changes: 4 additions & 2 deletions test/test-automation/SDL_test.h
Expand Up @@ -21,8 +21,6 @@
#ifndef _SDL_TEST_H
#define _SDL_TEST_H

#include <SDL/SDL.h>

#include "logger.h"

#include "common/common.h"
Expand All @@ -39,13 +37,17 @@ extern AssertFp testAssert;
#define TEST_ENABLED 1
#define TEST_DISABLED 0

//! Definition of all the possible test results
#define TEST_RESULT_PASS 0
#define TEST_RESULT_FAILURE 1
#define TEST_RESULT_NO_ASSERT 2
#define TEST_RESULT_SKIPPED 3
#define TEST_RESULT_KILLED 4
#define TEST_RESULT_SETUP_FAILURE 5

//! Definitions for test requirements
#define TEST_REQUIRES_AUDIO 1

/*!
* Holds information about a test case
*/
Expand Down
7 changes: 7 additions & 0 deletions test/test-automation/runner.c
Expand Up @@ -35,6 +35,7 @@
#include "plain_logger.h"
#include "xml_logger.h"
#include "logger.h"
#include "support.h"

//!< Function pointer to a test case function
typedef void (*TestCaseFp)(void *arg);
Expand Down Expand Up @@ -438,6 +439,12 @@ FilterTestCase(TestCaseReference *testReference)
}
}

if(testReference->requirements & TEST_REQUIRES_AUDIO) {
//printf("Debug: checking for audio support.\n");
retVal = PlatformSupportsAudio();
//printf("Debug: Audio support: %d\n", retVal);
}

return retVal;
}

Expand Down
51 changes: 51 additions & 0 deletions test/test-automation/support.c
@@ -0,0 +1,51 @@
/*
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 "support.h"

#include <SDL/SDL_config.h>

int
PlatformSupportsAudio()
{
int retValue = 0;

#ifdef SDL_AUDIO_DRIVER_COREAUDIO
retValue = 1;
#endif
#ifdef SDL_AUDIO_DRIVER_OSS
retValue = 1;
#endif

return retValue;
}

/*
int
PlatformSupportsOpenGL() {
int retValue = 0;
#define SDL_VIDEO_OPENGL
retValue = 1;
#endif
return retValue;
}
*/
31 changes: 31 additions & 0 deletions test/test-automation/support.h
@@ -0,0 +1,31 @@
/*
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 _SUPPORT_H
#define _SUPPORT_H

/*!
* Checks if platform supports audio.
*
* \return 1 if audio is supported, otherwise 0
*/
int PlatformSupportsAudio();

#endif
10 changes: 5 additions & 5 deletions test/test-automation/testaudio/testaudio.c
Expand Up @@ -8,18 +8,18 @@

#include "../SDL_test.h"

/* Test casess */
/* Test cases */
static const TestCaseReference test1 =
(TestCaseReference){ "audio_printOutputDevices", "Checks available output (non-capture) device names.", TEST_ENABLED, 0, 0};
(TestCaseReference){ "audio_printOutputDevices", "Checks available output (non-capture) device names.", TEST_ENABLED, TEST_REQUIRES_AUDIO, 0};

static const TestCaseReference test2 =
(TestCaseReference){ "audio_printInputDevices", "Checks available input (capture) device names.", TEST_ENABLED, 0, 0};
(TestCaseReference){ "audio_printInputDevices", "Checks available input (capture) device names.", TEST_ENABLED, TEST_REQUIRES_AUDIO, 0};

static const TestCaseReference test3 =
(TestCaseReference){ "audio_printAudioDrivers", "Checks available audio driver names.", TEST_ENABLED, 0, 0};
(TestCaseReference){ "audio_printAudioDrivers", "Checks available audio driver names.", TEST_ENABLED, TEST_REQUIRES_AUDIO, 0};

static const TestCaseReference test4 =
(TestCaseReference){ "audio_printCurrentAudioDriver", "Checks current audio driver name with initialized audio.", TEST_ENABLED, 0, 0};
(TestCaseReference){ "audio_printCurrentAudioDriver", "Checks current audio driver name with initialized audio.", TEST_ENABLED, TEST_REQUIRES_AUDIO, 0};

/* Test suite */
extern const TestCaseReference *testSuite[] = {
Expand Down

0 comments on commit 23a3a99

Please sign in to comment.