Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2011-11-28 16:33:18 +0000
committerEugene Tarassov2011-11-28 16:33:18 +0000
commit393d85909a22ac3d27beb933df7f37f8b9bdc3a0 (patch)
tree13c415eb2de62229221bb425e16acc893f3dcae0 /tests/cmd-line
parent1be6afea8b16b6d312a45f8438635ce342a6c6ca (diff)
downloadorg.eclipse.tcf.agent-393d85909a22ac3d27beb933df7f37f8b9bdc3a0.tar.gz
org.eclipse.tcf.agent-393d85909a22ac3d27beb933df7f37f8b9bdc3a0.tar.xz
org.eclipse.tcf.agent-393d85909a22ac3d27beb933df7f37f8b9bdc3a0.zip
TCF Test: new test added: cmd-line
Diffstat (limited to 'tests/cmd-line')
-rw-r--r--tests/cmd-line/Makefile30
-rw-r--r--tests/cmd-line/cmd-line.sln20
-rw-r--r--tests/cmd-line/cmd-line.vcproj744
-rw-r--r--tests/cmd-line/tcf/cmdline/cmdline.c17
-rw-r--r--tests/cmd-line/tcf/cmdline/cmdline.h19
5 files changed, 830 insertions, 0 deletions
diff --git a/tests/cmd-line/Makefile b/tests/cmd-line/Makefile
new file mode 100644
index 00000000..c17dc195
--- /dev/null
+++ b/tests/cmd-line/Makefile
@@ -0,0 +1,30 @@
+TCF_AGENT_DIR=../../agent
+
+include $(TCF_AGENT_DIR)/Makefile.inc
+
+override CFLAGS += $(foreach dir,$(INCDIRS),-I$(dir)) $(OPTS)
+
+HFILES := $(foreach dir,$(SRCDIRS) tcf/cmdline,$(wildcard $(dir)/*.h)) $(HFILES)
+CFILES := $(sort $(foreach dir,$(SRCDIRS) tcf/cmdline,$(wildcard $(dir)/*.c)) $(CFILES))
+
+EXECS = $(BINDIR)/agent$(EXTEXE)
+
+all: $(EXECS)
+
+$(BINDIR)/libtcf$(EXTLIB) : $(OFILES)
+ $(AR) -rc $@ $^
+ $(RANLIB)
+
+$(BINDIR)/agent$(EXTEXE): $(BINDIR)/tcf/main/main$(EXTOBJ) $(BINDIR)/libtcf$(EXTLIB)
+ $(CC) $(CFLAGS) -o $@ $(BINDIR)/tcf/main/main$(EXTOBJ) $(BINDIR)/libtcf$(EXTLIB) $(LIBS)
+
+$(BINDIR)/%$(EXTOBJ): %.c $(HFILES) Makefile
+ @$(call MKDIR,$(dir $@))
+ $(CC) $(CFLAGS) -c -o $@ $<
+
+$(BINDIR)/%$(EXTOBJ): $(TCF_AGENT_DIR)/%.c $(HFILES) Makefile
+ @$(call MKDIR,$(dir $@))
+ $(CC) $(CFLAGS) -c -o $@ $<
+
+clean:
+ $(call RMDIR,$(BINDIR))
diff --git a/tests/cmd-line/cmd-line.sln b/tests/cmd-line/cmd-line.sln
new file mode 100644
index 00000000..2eecc977
--- /dev/null
+++ b/tests/cmd-line/cmd-line.sln
@@ -0,0 +1,20 @@
+
+Microsoft Visual Studio Solution File, Format Version 10.00
+# Visual C++ Express 2008
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cmd-line", "cmd-line.vcproj", "{6A5604E2-7791-4E65-B625-BD285C511C8F}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Win32 = Debug|Win32
+ Release|Win32 = Release|Win32
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {6A5604E2-7791-4E65-B625-BD285C511C8F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {6A5604E2-7791-4E65-B625-BD285C511C8F}.Debug|Win32.Build.0 = Debug|Win32
+ {6A5604E2-7791-4E65-B625-BD285C511C8F}.Release|Win32.ActiveCfg = Release|Win32
+ {6A5604E2-7791-4E65-B625-BD285C511C8F}.Release|Win32.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/tests/cmd-line/cmd-line.vcproj b/tests/cmd-line/cmd-line.vcproj
new file mode 100644
index 00000000..c5f4ceae
--- /dev/null
+++ b/tests/cmd-line/cmd-line.vcproj
@@ -0,0 +1,744 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="9.00"
+ Name="cmd-line"
+ ProjectGUID="{6a5604e2-7791-4e65-b625-bd285c511c8f}"
+ RootNamespace="symtest"
+ Keyword="Win32Proj"
+ TargetFrameworkVersion="196613"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="$(SolutionDir)\obj\MSVC\$(ConfigurationName)"
+ IntermediateDirectory="$(SolutionDir)\obj\MSVC\$(ConfigurationName)"
+ ConfigurationType="1"
+ CharacterSet="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=".;..\..\agent;..\..\agent\machine\i386;..\..\agent\system\Windows"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+ MinimalRebuild="true"
+ BasicRuntimeChecks="3"
+ RuntimeLibrary="1"
+ UsePrecompiledHeader="0"
+ WarningLevel="3"
+ DebugInformationFormat="4"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="WS2_32.lib Iphlpapi.lib Version.lib"
+ LinkIncremental="2"
+ GenerateManifest="false"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="$(SolutionDir)\obj\MSVC\$(ConfigurationName)"
+ IntermediateDirectory="$(SolutionDir)\obj\MSVC\$(ConfigurationName)"
+ ConfigurationType="1"
+ CharacterSet="1"
+ WholeProgramOptimization="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ EnableIntrinsicFunctions="true"
+ AdditionalIncludeDirectories=".;..\..\agent;..\..\agent\machine\i386;..\..\agent\system\Windows"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
+ RuntimeLibrary="2"
+ EnableFunctionLevelLinking="true"
+ UsePrecompiledHeader="0"
+ WarningLevel="3"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="WS2_32.lib Iphlpapi.lib Version.lib"
+ LinkIncremental="1"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="framework"
+ >
+ <File
+ RelativePath="..\..\agent\tcf\framework\asyncreq.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\asyncreq.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\base64.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\base64.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\cache.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\cache.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\channel.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\channel.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\channel_pipe.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\channel_pipe.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\channel_tcp.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\channel_tcp.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\context.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\context.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\cpudefs-ext.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\cpudefs.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\cpudefs.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\errors.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\errors.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\events.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\events.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\exceptions.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\exceptions.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\inputbuf.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\inputbuf.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\ip_ifc.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\ip_ifc.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\json.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\json.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\link.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\mdep.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\mdep.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\myalloc.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\myalloc.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\outputbuf.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\outputbuf.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\peer.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\peer.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\plugins.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\plugins.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\protocol.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\protocol.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\proxy.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\proxy.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\signames.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\signames.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\streams.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\streams.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\tcf.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\trace.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\trace.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\waitpid.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\framework\waitpid.h"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="main"
+ >
+ <File
+ RelativePath="..\..\agent\tcf\main\cmdline.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\main\cmdline.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\main\main.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\main\server.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\main\server.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\main\services-ext.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\main\services.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\main\services.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\main\test.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\main\test.h"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="services"
+ >
+ <File
+ RelativePath="..\..\agent\tcf\services\breakpoints.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\breakpoints.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\diagnostics.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\diagnostics.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\discovery.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\discovery.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\discovery_udp.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\discovery_udp.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\dwarf.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\dwarfcache.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\dwarfcache.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\dwarfexpr.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\dwarfexpr.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\dwarfframe.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\dwarfframe.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\dwarfio.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\dwarfio.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\dwarfreloc-ext.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\dwarfreloc.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\dwarfreloc.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\expressions.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\expressions.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\filesystem.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\filesystem.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\linenumbers.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\linenumbers.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\linenumbers_elf.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\linenumbers_proxy.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\linenumbers_win32.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\memorymap.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\memorymap.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\memoryservice.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\memoryservice.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\pathmap.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\pathmap.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\processes.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\processes.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\registers.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\registers.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\runctrl.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\runctrl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\stacktrace.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\stacktrace.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\streamsservice.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\streamsservice.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\symbols.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\symbols.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\symbols_alloc.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\symbols_elf.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\symbols_proxy.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\symbols_win32.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\sysmon.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\sysmon.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\tcf_elf.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\tcf_elf.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\terminals.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\terminals.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\vm.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\tcf\services\vm.h"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="machine"
+ >
+ <Filter
+ Name="i386"
+ >
+ <File
+ RelativePath="..\..\agent\machine\i386\tcf\cpudefs-mdep.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\machine\i386\tcf\dwarfreloc-mdep.h"
+ >
+ </File>
+ </Filter>
+ </Filter>
+ <Filter
+ Name="cmdline"
+ >
+ <File
+ RelativePath=".\tcf\cmdline\cmdline.c"
+ >
+ </File>
+ <File
+ RelativePath=".\tcf\cmdline\cmdline.h"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="system"
+ >
+ <Filter
+ Name="Windows"
+ >
+ <File
+ RelativePath="..\..\agent\system\Windows\tcf\context-win32.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\system\Windows\tcf\context-win32.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\system\Windows\tcf\pthreads-win32.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\system\Windows\tcf\pthreads-win32.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\system\Windows\tcf\regset.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\system\Windows\tcf\windbgcache.c"
+ >
+ </File>
+ <File
+ RelativePath="..\..\agent\system\Windows\tcf\windbgcache.h"
+ >
+ </File>
+ </Filter>
+ </Filter>
+ <File
+ RelativePath="..\..\agent\tcf\config.h"
+ >
+ </File>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>
diff --git a/tests/cmd-line/tcf/cmdline/cmdline.c b/tests/cmd-line/tcf/cmdline/cmdline.c
new file mode 100644
index 00000000..4a9ff248
--- /dev/null
+++ b/tests/cmd-line/tcf/cmdline/cmdline.c
@@ -0,0 +1,17 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Wind River Systems, Inc. and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * and Eclipse Distribution License v1.0 which accompany this distribution.
+ * The Eclipse Public License is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * and the Eclipse Distribution License is available at
+ * http://www.eclipse.org/org/documents/edl-v10.php.
+ * You may elect to redistribute this code under either of these licenses.
+ *
+ * Contributors:
+ * Wind River Systems - initial API and implementation
+ *******************************************************************************/
+
+#include <tcf/config.h>
+#include <tcf/cmdline/cmdline.h>
diff --git a/tests/cmd-line/tcf/cmdline/cmdline.h b/tests/cmd-line/tcf/cmdline/cmdline.h
new file mode 100644
index 00000000..8666409b
--- /dev/null
+++ b/tests/cmd-line/tcf/cmdline/cmdline.h
@@ -0,0 +1,19 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Wind River Systems, Inc. and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * and Eclipse Distribution License v1.0 which accompany this distribution.
+ * The Eclipse Public License is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * and the Eclipse Distribution License is available at
+ * http://www.eclipse.org/org/documents/edl-v10.php.
+ * You may elect to redistribute this code under either of these licenses.
+ *
+ * Contributors:
+ * Wind River Systems - initial API and implementation
+ *******************************************************************************/
+
+#ifndef D_cmdline
+#define D_cmdline
+
+#endif D_cmdline

Back to the top