Changeset 37720 in vbox
- Timestamp:
- Jun 30, 2011 8:27:48 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72581
- Location:
- trunk
- Files:
-
- 3 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/Makefile.kmk
r37025 r37720 94 94 $(QUIET)$(APPEND) -t "$@" "done" 95 95 96 PROGRAMS += tstVector97 tstVector_TEMPLATE = VBOXR3TSTEXE98 tstVector_SOURCES = \99 testcase/tstVector.cpp100 tstVector_INCS = .101 tstVector_LIBS = \102 $(LIB_RUNTIME)103 104 96 # 105 97 # Additional testcase designed to be run manually, which initiates and starts the Linux -
trunk/src/VBox/Additions/x11/VBoxClient/seamless-x11.cpp
r37719 r37720 21 21 #include <iprt/err.h> 22 22 #include <iprt/assert.h> 23 #include <iprt/vector.h>24 23 #include <VBox/log.h> 25 24 … … 30 29 31 30 #include <limits.h> 31 32 #include "vector.h" 32 33 33 34 #ifdef TESTCASE -
trunk/src/VBox/Runtime/testcase/Makefile.kmk
r37573 r37720 124 124 tstRTUuid \ 125 125 tstRTCircBuf \ 126 tstRTManifest 126 tstRTManifest \ 127 tstVector 127 128 128 129 PROGRAMS.win += \ … … 513 514 tstRTCoreDump_SOURCES = tstRTCoreDump.cpp 514 515 516 tstVector_TEMPLATE = VBOXR3TSTEXE 517 tstVector_SOURCES = tstVector.cpp 518 515 519 516 520 # -
trunk/src/VBox/Runtime/testcase/tstVector.cpp
r37668 r37720 19 19 * Header Files * 20 20 *******************************************************************************/ 21 #include "vector.h"22 23 21 #include <iprt/test.h> 22 #include <iprt/vector.h> 24 23 25 24 #include <stdlib.h> /* For realloc */
Note:
See TracChangeset
for help on using the changeset viewer.