diff options
author | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2021-07-14 16:57:10 +0000 |
---|---|---|
committer | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2021-07-14 16:57:10 +0000 |
commit | 36d257289d5021a600bc01b07b38900cc239b1cb (patch) | |
tree | bebf917607533bbc735e9da2d5a9c0313352f2eb | |
parent | 893d68ce929b4a686b2ddb2166038480566a95bc (diff) | |
download | VirtualBox-svn-36d257289d5021a600bc01b07b38900cc239b1cb.tar.gz |
Audio/ValKit: Added tdAudioTest test driver to the Validation Kit .zip. bugref:10008
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@90191 cfe28804-0f27-0410-a406-dd0f0b0b656f
-rw-r--r-- | src/VBox/ValidationKit/tests/Makefile.kmk | 3 | ||||
-rw-r--r-- | src/VBox/ValidationKit/tests/audio/Makefile.kmk | 40 | ||||
-rw-r--r-- | src/VBox/ValidationKit/tests/audio/Makefile.kup | 0 |
3 files changed, 42 insertions, 1 deletions
diff --git a/src/VBox/ValidationKit/tests/Makefile.kmk b/src/VBox/ValidationKit/tests/Makefile.kmk index 6d70d02c80d..82639200f14 100644 --- a/src/VBox/ValidationKit/tests/Makefile.kmk +++ b/src/VBox/ValidationKit/tests/Makefile.kmk @@ -4,7 +4,7 @@ # # -# Copyright (C) 2006-2020 Oracle Corporation +# Copyright (C) 2006-2021 Oracle Corporation # # This file is part of VirtualBox Open Source Edition (OSE), as # available from http://www.virtualbox.org. This file is free software; @@ -32,6 +32,7 @@ include $(KBUILD_PATH)/subheader.kmk # include $(PATH_SUB_CURRENT)/additions/Makefile.kmk include $(PATH_SUB_CURRENT)/api/Makefile.kmk +include $(PATH_SUB_CURRENT)/audio/Makefile.kmk include $(PATH_SUB_CURRENT)/autostart/Makefile.kmk include $(PATH_SUB_CURRENT)/benchmarks/Makefile.kmk include $(PATH_SUB_CURRENT)/cpu/Makefile.kmk diff --git a/src/VBox/ValidationKit/tests/audio/Makefile.kmk b/src/VBox/ValidationKit/tests/audio/Makefile.kmk new file mode 100644 index 00000000000..b5ce10aea8f --- /dev/null +++ b/src/VBox/ValidationKit/tests/audio/Makefile.kmk @@ -0,0 +1,40 @@ +# $Id$ +## @file +# VirtualBox Validation Kit - Audio tests. +# + +# +# Copyright (C) 2021 Oracle Corporation +# +# This file is part of VirtualBox Open Source Edition (OSE), as +# available from http://www.virtualbox.org. This file is free software; +# you can redistribute it and/or modify it under the terms of the GNU +# General Public License (GPL) as published by the Free Software +# Foundation, in version 2 as it comes in the "COPYING" file of the +# VirtualBox OSE distribution. VirtualBox OSE is distributed in the +# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. +# +# The contents of this file may alternatively be used under the terms +# of the Common Development and Distribution License Version 1.0 +# (CDDL) only, as it comes in the "COPYING.CDDL" file of the +# VirtualBox OSE distribution, in which case the provisions of the +# CDDL are applicable instead of those of the GPL. +# +# You may elect to license modified versions of this file under the +# terms and conditions of either the GPL or the CDDL or both. +# + +SUB_DEPTH = ../../../../.. +include $(KBUILD_PATH)/subheader.kmk + + +INSTALLS += ValidationKitTestsAudio +ValidationKitTestsAudio_TEMPLATE = VBoxValidationKitR3 +ValidationKitTestsAudio_INST = $(INST_VALIDATIONKIT)tests/audio/ +ValidationKitTestsAudio_EXEC_SOURCES := \ + $(PATH_SUB_CURRENT)/tdAudioTest.py + +VBOX_VALIDATIONKIT_PYTHON_SOURCES += $(ValidationKitTestsAudio_EXEC_SOURCES) + +$(evalcall def_vbox_validationkit_process_python_sources) +include $(FILE_KBUILD_SUB_FOOTER) diff --git a/src/VBox/ValidationKit/tests/audio/Makefile.kup b/src/VBox/ValidationKit/tests/audio/Makefile.kup deleted file mode 100644 index e69de29bb2d..00000000000 --- a/src/VBox/ValidationKit/tests/audio/Makefile.kup +++ /dev/null |