summaryrefslogtreecommitdiff
path: root/src/VBox/GuestHost/SharedClipboard/testcase/Makefile.kmk
blob: cd7ded28a85ac5f75ff082ebfefb51c8ed0732bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# $Id$
## @file
# Sub-Makefile for the Shared Clipboard Guest/Host testcases.
#

#
# Copyright (C) 2011-2022 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.
#

SUB_DEPTH = ../../../../..
include $(KBUILD_PATH)/subheader.kmk

if defined(VBOX_WITH_TESTCASES) && !defined(VBOX_ONLY_ADDITIONS) && !defined(VBOX_ONLY_SDK)
 if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris)

  PROGRAMS += tstClipboardGH-X11 tstClipboardGH-X11Smoke
  TESTING  += \
  	$(tstClipboardGH-X11_0_OUTDIR)/tstClipboardGH-X11.run \
  	$(tstClipboardGH-X11_0_OUTDIR)/tstClipboardGH-X11Smoke.run

  tstClipboardGH-X11_TEMPLATE  = VBOXR3TSTEXE
  tstClipboardGH-X11_DEFS      = VBOX_WITH_HGCM UNIT_TEST TESTCASE
  tstClipboardGH-X11_SOURCES   = \
	tstClipboardGH-X11.cpp \
	../clipboard-x11.cpp \
	../clipboard-common.cpp
  tstClipboardGH-X11_CXXFLAGS += -Wno-array-bounds
  tstClipboardGH-X11_LIBS      = X11 Xt
  tstClipboardGH-X11_CLEAN     = $(tstClipboardGH-X11_0_OUTDIR)/tstClipboardGH-X11.run

  tstClipboardGH-X11Smoke_TEMPLATE = VBOXR3TSTEXE
  tstClipboardGH-X11Smoke_DEFS     = VBOX_WITH_HGCM SMOKETEST
  tstClipboardGH-X11Smoke_SOURCES  = \
	tstClipboardGH-X11Smoke.cpp \
	../clipboard-x11.cpp \
	../clipboard-common.cpp
  tstClipboardGH-X11Smoke_LIBPATH  = $(VBOX_LIBPATH_X11)
  tstClipboardGH-X11Smoke_LIBS     = X11 Xt
  tstClipboardGH-X11Smoke_CLEAN    = $(tstClipboardGH-X11Smoke_0_OUTDIR)/tstClipboardGH-X11Smoke.run

  $$(tstClipboardGH-X11_0_OUTDIR)/tstClipboardGH-X11.run: $$(tstClipboardGH-X11_1_STAGE_TARGET)
	export VBOX_LOG_DEST=nofile; $(tstClipboardGH-X11_1_STAGE_TARGET) quiet
	$(QUIET)$(APPEND) -t "$@" "done"

  $$(tstClipboardGH-X11Smoke_0_OUTDIR)/tstClipboardGH-X11Smoke.run:	$$(tstClipboardGH-X11Smoke_1_STAGE_TARGET)
	export VBOX_LOG_DEST=nofile; $(tstClipboardGH-X11Smoke_1_STAGE_TARGET) quiet
	$(QUIET)$(APPEND) -t "$@" "done"

  if defined(VBOX_WITH_QTGUI)
    include $(PATH_SUB_CURRENT)/tstClipboardQt/Makefile.kmk
  endif


 endif
endif

include $(FILE_KBUILD_SUB_FOOTER)