- Timestamp:
- 11/02/2017 12:07:25 AM (9 years ago)
- Location:
- branches/FEPSimulator
- Files:
-
- 4 added
- 11 edited
-
HighwaysParser.cpp (modified) (5 diffs)
-
HighwaysParser.h (modified) (1 diff)
-
nbproject/Makefile-Debug.mk (modified) (2 diffs)
-
nbproject/Makefile-impl.mk (modified) (1 diff)
-
nbproject/Makefile-testHighwaysParser.mk (added)
-
nbproject/Makefile-variables.mk (modified) (2 diffs)
-
nbproject/Package-Debug.bash (modified) (1 diff)
-
nbproject/Package-testHighwaysParser.bash (added)
-
nbproject/configurations.xml (modified) (8 diffs)
-
nbproject/private/Makefile-variables.mk (modified) (1 diff)
-
nbproject/private/configurations.xml (modified) (1 diff)
-
nbproject/private/private.xml (modified) (1 diff)
-
nbproject/project.xml (modified) (1 diff)
-
tests (added)
-
tests/HighwaysParserTest.cpp (added)
Legend:
- Unmodified
- Added
- Removed
-
branches/FEPSimulator/HighwaysParser.cpp
r205 r209 35 35 int numLines; 36 36 sscanf(currLine.c_str(), "%d", &numLines); 37 cout << currLine << endl;38 37 int lineNum = 0; 39 38 long lds = 0; … … 51 50 float occ = 0; 52 51 int vol = 0; 53 char loopLoc[25]; 52 54 53 for(int lineIndex = 0; lineIndex < numLines; lineIndex++) 55 54 { … … 59 58 int numStations = 0; 60 59 sscanf(currLine.c_str(), "%d %hd %d", &lineNum, &count, &numStations); 61 cout << "Line num: " << lineNum << endl;62 cout << "Count: " << count << endl;63 cout << "numStations: " << numStations << endl;64 60 newLine->lineNum = lineNum; 65 61 newLine->count = count; … … 93 89 94 90 getline(highwaysStream, currLine); 95 cout << currLine << endl;96 sscanf(currLine.c_str(), "%ld %f %d %s", &loopID, &occ, &vol, loopLoc);91 newLoop->loop_loc = (char *) malloc(25 * sizeof(char)); 92 sscanf(currLine.c_str(), "%ld %f %d %s", &loopID, &occ, &vol, newLoop->loop_loc); 97 93 newLoop->loopID = loopID; 98 94 newLoop->occ = occ; 99 95 newLoop->vol = vol; 100 96 newLoop->spd = 0; 101 newLoop->loop_loc = loopLoc;102 cout << "Adding " << newLoop->loopID << " to " << newStation->lds << endl;103 97 newStation->loops.push_back(newLoop); 104 98 } … … 109 103 printf("%02X", (unsigned char) newStation->dataPack[byte]); 110 104 } 105 printf("\n"); 111 106 112 cout << "Adding " << newStation->lds << " to ldsMap " << " at index " << ldsIndex << endl;113 107 this->stations.push_back(newStation); 114 108 } 115 cout << "Adding " << newLine->lineNum << " to lines" << endl;116 109 this->lines.push_back(newLine); 117 110 } -
branches/FEPSimulator/HighwaysParser.h
r202 r209 19 19 public: 20 20 HighwaysParser(char * highwaysData); 21 21 void parseLines(char * highwaysData); 22 22 vector<FEP_LINE*> lines; 23 23 vector<STATION*> stations; 24 24 virtual ~HighwaysParser(); 25 25 private: 26 void parseLines(char * highwaysData);27 26 }; 28 27 -
branches/FEPSimulator/nbproject/Makefile-Debug.mk
r185 r209 43 43 ${OBJECTDIR}/fep_xdr.o 44 44 45 # Test Directory 46 TESTDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tests 47 48 # Test Files 49 TESTFILES= \ 50 ${TESTDIR}/TestFiles/f1 45 51 46 52 # C Compiler Flags 47 CFLAGS= 53 CFLAGS=`cppunit-config --cflags` 48 54 49 55 # CC Compiler Flags 50 CCFLAGS= 51 CXXFLAGS= 56 CCFLAGS=`cppunit-config --cflags` 57 CXXFLAGS=`cppunit-config --cflags` 52 58 53 59 # Fortran Compiler Flags … … 62 68 # Build Targets 63 69 .build-conf: ${BUILD_SUBPROJECTS} 64 "${MAKE}" -f nbproject/Makefile-${CND_CONF}.mk ${ CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/fepsimulator65 66 ${ CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/fepsimulator: ${OBJECTFILES}67 ${MKDIR} -p ${ CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}68 ${LINK.cc} -o ${ CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/fepsimulator${OBJECTFILES} ${LDLIBSOPTIONS}70 "${MAKE}" -f nbproject/Makefile-${CND_CONF}.mk ${TESTDIR}/TestFiles/f2 71 72 ${TESTDIR}/TestFiles/f2: ${OBJECTFILES} 73 ${MKDIR} -p ${TESTDIR}/TestFiles 74 ${LINK.cc} -o ${TESTDIR}/TestFiles/f2 ${OBJECTFILES} ${LDLIBSOPTIONS} 69 75 70 76 ${OBJECTDIR}/DataPacker.o: DataPacker.cpp 71 77 ${MKDIR} -p ${OBJECTDIR} 72 78 ${RM} "$@.d" 73 $(COMPILE.cc) -g -I tinyxml-MMD -MP -MF "$@.d" -o ${OBJECTDIR}/DataPacker.o DataPacker.cpp79 $(COMPILE.cc) -g -I. -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/DataPacker.o DataPacker.cpp 74 80 75 81 ${OBJECTDIR}/FEPSim.o: FEPSim.cpp 76 82 ${MKDIR} -p ${OBJECTDIR} 77 83 ${RM} "$@.d" 78 $(COMPILE.cc) -g -I tinyxml-MMD -MP -MF "$@.d" -o ${OBJECTDIR}/FEPSim.o FEPSim.cpp84 $(COMPILE.cc) -g -I. -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/FEPSim.o FEPSim.cpp 79 85 80 86 ${OBJECTDIR}/HighwaysParser.o: HighwaysParser.cpp 81 87 ${MKDIR} -p ${OBJECTDIR} 82 88 ${RM} "$@.d" 83 $(COMPILE.cc) -g -I tinyxml-MMD -MP -MF "$@.d" -o ${OBJECTDIR}/HighwaysParser.o HighwaysParser.cpp89 $(COMPILE.cc) -g -I. -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/HighwaysParser.o HighwaysParser.cpp 84 90 85 91 ${OBJECTDIR}/Main.o: Main.cpp 86 92 ${MKDIR} -p ${OBJECTDIR} 87 93 ${RM} "$@.d" 88 $(COMPILE.cc) -g -I tinyxml-MMD -MP -MF "$@.d" -o ${OBJECTDIR}/Main.o Main.cpp94 $(COMPILE.cc) -g -I. -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/Main.o Main.cpp 89 95 90 96 ${OBJECTDIR}/fep_clnt.o: fep_clnt.c 91 97 ${MKDIR} -p ${OBJECTDIR} 92 98 ${RM} "$@.d" 93 $(COMPILE.c) -g - MMD -MP -MF "$@.d" -o ${OBJECTDIR}/fep_clnt.o fep_clnt.c99 $(COMPILE.c) -g -I. -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/fep_clnt.o fep_clnt.c 94 100 95 101 ${OBJECTDIR}/fep_xdr.o: fep_xdr.c 96 102 ${MKDIR} -p ${OBJECTDIR} 97 103 ${RM} "$@.d" 98 $(COMPILE.c) -g - MMD -MP -MF "$@.d" -o ${OBJECTDIR}/fep_xdr.o fep_xdr.c104 $(COMPILE.c) -g -I. -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/fep_xdr.o fep_xdr.c 99 105 100 106 # Subprojects 101 107 .build-subprojects: 108 109 # Build Test Targets 110 .build-tests-conf: .build-conf ${TESTFILES} 111 ${TESTDIR}/TestFiles/f1: ${TESTDIR}/tests/HighwaysParserTest.o ${OBJECTFILES:%.o=%_nomain.o} 112 ${MKDIR} -p ${TESTDIR}/TestFiles 113 ${LINK.cc} -o ${TESTDIR}/TestFiles/f1 $^ ${LDLIBSOPTIONS} 114 115 116 ${TESTDIR}/tests/HighwaysParserTest.o: tests/HighwaysParserTest.cpp 117 ${MKDIR} -p ${TESTDIR}/tests 118 ${RM} "$@.d" 119 $(COMPILE.cc) -g -I. -I. -MMD -MP -MF "$@.d" -o ${TESTDIR}/tests/HighwaysParserTest.o tests/HighwaysParserTest.cpp 120 121 122 ${OBJECTDIR}/DataPacker_nomain.o: ${OBJECTDIR}/DataPacker.o DataPacker.cpp 123 ${MKDIR} -p ${OBJECTDIR} 124 @NMOUTPUT=`${NM} ${OBJECTDIR}/DataPacker.o`; \ 125 if (echo "$$NMOUTPUT" | ${GREP} '|main$$') || \ 126 (echo "$$NMOUTPUT" | ${GREP} 'T main$$') || \ 127 (echo "$$NMOUTPUT" | ${GREP} 'T _main$$'); \ 128 then \ 129 ${RM} "$@.d";\ 130 $(COMPILE.cc) -g -I. -Dmain=__nomain -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/DataPacker_nomain.o DataPacker.cpp;\ 131 else \ 132 ${CP} ${OBJECTDIR}/DataPacker.o ${OBJECTDIR}/DataPacker_nomain.o;\ 133 fi 134 135 ${OBJECTDIR}/FEPSim_nomain.o: ${OBJECTDIR}/FEPSim.o FEPSim.cpp 136 ${MKDIR} -p ${OBJECTDIR} 137 @NMOUTPUT=`${NM} ${OBJECTDIR}/FEPSim.o`; \ 138 if (echo "$$NMOUTPUT" | ${GREP} '|main$$') || \ 139 (echo "$$NMOUTPUT" | ${GREP} 'T main$$') || \ 140 (echo "$$NMOUTPUT" | ${GREP} 'T _main$$'); \ 141 then \ 142 ${RM} "$@.d";\ 143 $(COMPILE.cc) -g -I. -Dmain=__nomain -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/FEPSim_nomain.o FEPSim.cpp;\ 144 else \ 145 ${CP} ${OBJECTDIR}/FEPSim.o ${OBJECTDIR}/FEPSim_nomain.o;\ 146 fi 147 148 ${OBJECTDIR}/HighwaysParser_nomain.o: ${OBJECTDIR}/HighwaysParser.o HighwaysParser.cpp 149 ${MKDIR} -p ${OBJECTDIR} 150 @NMOUTPUT=`${NM} ${OBJECTDIR}/HighwaysParser.o`; \ 151 if (echo "$$NMOUTPUT" | ${GREP} '|main$$') || \ 152 (echo "$$NMOUTPUT" | ${GREP} 'T main$$') || \ 153 (echo "$$NMOUTPUT" | ${GREP} 'T _main$$'); \ 154 then \ 155 ${RM} "$@.d";\ 156 $(COMPILE.cc) -g -I. -Dmain=__nomain -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/HighwaysParser_nomain.o HighwaysParser.cpp;\ 157 else \ 158 ${CP} ${OBJECTDIR}/HighwaysParser.o ${OBJECTDIR}/HighwaysParser_nomain.o;\ 159 fi 160 161 ${OBJECTDIR}/Main_nomain.o: ${OBJECTDIR}/Main.o Main.cpp 162 ${MKDIR} -p ${OBJECTDIR} 163 @NMOUTPUT=`${NM} ${OBJECTDIR}/Main.o`; \ 164 if (echo "$$NMOUTPUT" | ${GREP} '|main$$') || \ 165 (echo "$$NMOUTPUT" | ${GREP} 'T main$$') || \ 166 (echo "$$NMOUTPUT" | ${GREP} 'T _main$$'); \ 167 then \ 168 ${RM} "$@.d";\ 169 $(COMPILE.cc) -g -I. -Dmain=__nomain -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/Main_nomain.o Main.cpp;\ 170 else \ 171 ${CP} ${OBJECTDIR}/Main.o ${OBJECTDIR}/Main_nomain.o;\ 172 fi 173 174 ${OBJECTDIR}/fep_clnt_nomain.o: ${OBJECTDIR}/fep_clnt.o fep_clnt.c 175 ${MKDIR} -p ${OBJECTDIR} 176 @NMOUTPUT=`${NM} ${OBJECTDIR}/fep_clnt.o`; \ 177 if (echo "$$NMOUTPUT" | ${GREP} '|main$$') || \ 178 (echo "$$NMOUTPUT" | ${GREP} 'T main$$') || \ 179 (echo "$$NMOUTPUT" | ${GREP} 'T _main$$'); \ 180 then \ 181 ${RM} "$@.d";\ 182 $(COMPILE.c) -g -I. -Dmain=__nomain -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/fep_clnt_nomain.o fep_clnt.c;\ 183 else \ 184 ${CP} ${OBJECTDIR}/fep_clnt.o ${OBJECTDIR}/fep_clnt_nomain.o;\ 185 fi 186 187 ${OBJECTDIR}/fep_xdr_nomain.o: ${OBJECTDIR}/fep_xdr.o fep_xdr.c 188 ${MKDIR} -p ${OBJECTDIR} 189 @NMOUTPUT=`${NM} ${OBJECTDIR}/fep_xdr.o`; \ 190 if (echo "$$NMOUTPUT" | ${GREP} '|main$$') || \ 191 (echo "$$NMOUTPUT" | ${GREP} 'T main$$') || \ 192 (echo "$$NMOUTPUT" | ${GREP} 'T _main$$'); \ 193 then \ 194 ${RM} "$@.d";\ 195 $(COMPILE.c) -g -I. -Dmain=__nomain -MMD -MP -MF "$@.d" -o ${OBJECTDIR}/fep_xdr_nomain.o fep_xdr.c;\ 196 else \ 197 ${CP} ${OBJECTDIR}/fep_xdr.o ${OBJECTDIR}/fep_xdr_nomain.o;\ 198 fi 199 200 # Run Test Targets 201 .test-conf: 202 @if [ "${TEST}" = "" ]; \ 203 then \ 204 ${TESTDIR}/TestFiles/f1 || true; \ 205 else \ 206 ./${TEST} || true; \ 207 fi 102 208 103 209 # Clean Targets 104 210 .clean-conf: ${CLEAN_SUBPROJECTS} 105 211 ${RM} -r ${CND_BUILDDIR}/${CND_CONF} 106 ${RM} ${ CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/fepsimulator212 ${RM} ${TESTDIR}/TestFiles/f2 107 213 108 214 # Subprojects -
branches/FEPSimulator/nbproject/Makefile-impl.mk
r82 r209 32 32 33 33 # All Configurations 34 ALLCONFS=Debug Release 34 ALLCONFS=Debug Release testHighwaysParser 35 35 36 36 -
branches/FEPSimulator/nbproject/Makefile-variables.mk
r82 r209 9 9 # Debug configuration 10 10 CND_PLATFORM_Debug=GNU-MacOSX 11 CND_ARTIFACT_DIR_Debug= dist/Debug/GNU-MacOSX12 CND_ARTIFACT_NAME_Debug=f epsimulator13 CND_ARTIFACT_PATH_Debug= dist/Debug/GNU-MacOSX/fepsimulator11 CND_ARTIFACT_DIR_Debug=build/Debug/GNU-MacOSX/tests/TestFiles 12 CND_ARTIFACT_NAME_Debug=f2 13 CND_ARTIFACT_PATH_Debug=build/Debug/GNU-MacOSX/tests/TestFiles/f2 14 14 CND_PACKAGE_DIR_Debug=dist/Debug/GNU-MacOSX/package 15 15 CND_PACKAGE_NAME_Debug=fepsimulator.tar … … 23 23 CND_PACKAGE_NAME_Release=feprpcclient.tar 24 24 CND_PACKAGE_PATH_Release=dist/Release/GNU-Linux-x86/package/feprpcclient.tar 25 # testHighwaysParser configuration 26 CND_PLATFORM_testHighwaysParser=GNU-MacOSX 27 CND_ARTIFACT_DIR_testHighwaysParser=build/testHighwaysParser/GNU-MacOSX/tests/TestFiles 28 CND_ARTIFACT_NAME_testHighwaysParser=f2 29 CND_ARTIFACT_PATH_testHighwaysParser=build/testHighwaysParser/GNU-MacOSX/tests/TestFiles/f2 30 CND_PACKAGE_DIR_testHighwaysParser=dist/testHighwaysParser/GNU-MacOSX/package 31 CND_PACKAGE_NAME_testHighwaysParser=fepsimulator.tar 32 CND_PACKAGE_PATH_testHighwaysParser=dist/testHighwaysParser/GNU-MacOSX/package/fepsimulator.tar 25 33 # 26 34 # include compiler specific variables -
branches/FEPSimulator/nbproject/Package-Debug.bash
r82 r209 14 14 NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging 15 15 TMPDIRNAME=tmp-packaging 16 OUTPUT_PATH=${ CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/fepsimulator17 OUTPUT_BASENAME=f epsimulator16 OUTPUT_PATH=${TESTDIR}/TestFiles/f2 17 OUTPUT_BASENAME=f2 18 18 PACKAGE_TOP_DIR=fepsimulator/ 19 19 -
branches/FEPSimulator/nbproject/configurations.xml
r186 r209 29 29 projectFiles="false" 30 30 kind="TEST_LOGICAL_FOLDER"> 31 <logicalFolder name="f1" 32 displayName="HighwaysParserTest" 33 projectFiles="true" 34 kind="TEST"> 35 <itemPath>tests/HighwaysParserTest.cpp</itemPath> 36 </logicalFolder> 31 37 </logicalFolder> 32 38 <logicalFolder name="ExternalFiles" … … 46 52 </toolsSet> 47 53 <compileType> 48 <ccTool> 49 <incDir> 50 <pElem>tinyxml</pElem> 51 </incDir> 52 </ccTool> 54 <cTool> 55 <incDir> 56 <pElem>.</pElem> 57 </incDir> 58 <commandLine>`cppunit-config --cflags`</commandLine> 59 </cTool> 60 <ccTool> 61 <incDir> 62 <pElem>.</pElem> 63 </incDir> 64 <commandLine>`cppunit-config --cflags`</commandLine> 65 </ccTool> 66 <linkerTool> 67 <output>${TESTDIR}/TestFiles/f2</output> 68 </linkerTool> 53 69 </compileType> 54 70 <item path="DataPacker.cpp" ex="false" tool="1" flavor2="0"> … … 66 82 <item path="Main.cpp" ex="false" tool="1" flavor2="0"> 67 83 </item> 84 <folder path="TestFiles/f1"> 85 <cTool> 86 <incDir> 87 <pElem>.</pElem> 88 </incDir> 89 </cTool> 90 <ccTool> 91 <incDir> 92 <pElem>.</pElem> 93 </incDir> 94 </ccTool> 95 <linkerTool> 96 <output>${TESTDIR}/TestFiles/f1</output> 97 </linkerTool> 98 </folder> 68 99 <item path="fep.h" ex="false" tool="3" flavor2="0"> 69 100 </item> … … 73 104 </item> 74 105 <item path="network.h" ex="false" tool="3" flavor2="0"> 106 </item> 107 <item path="tests/HighwaysParserTest.cpp" ex="false" tool="1" flavor2="0"> 75 108 </item> 76 109 </conf> … … 84 117 <cTool> 85 118 <developmentMode>5</developmentMode> 86 </cTool> 87 <ccTool> 88 <developmentMode>5</developmentMode> 119 <incDir> 120 <pElem>.</pElem> 121 </incDir> 122 <commandLine>`cppunit-config --cflags`</commandLine> 123 </cTool> 124 <ccTool> 125 <developmentMode>5</developmentMode> 126 <incDir> 127 <pElem>.</pElem> 128 </incDir> 129 <commandLine>`cppunit-config --cflags`</commandLine> 89 130 </ccTool> 90 131 <fortranCompilerTool> … … 94 135 <developmentMode>5</developmentMode> 95 136 </asmTool> 137 <linkerTool> 138 <output>${TESTDIR}/TestFiles/f2</output> 139 <linkerLibItems> 140 <linkerOptionItem>`cppunit-config --libs`</linkerOptionItem> 141 <linkerOptionItem>`cppunit-config --libs`</linkerOptionItem> 142 <linkerOptionItem>`cppunit-config --libs`</linkerOptionItem> 143 <linkerOptionItem>`cppunit-config --libs`</linkerOptionItem> 144 </linkerLibItems> 145 </linkerTool> 96 146 </compileType> 97 147 <item path="DataPacker.cpp" ex="false" tool="1" flavor2="0"> … … 109 159 <item path="Main.cpp" ex="false" tool="1" flavor2="0"> 110 160 </item> 161 <folder path="TestFiles/f1"> 162 <cTool> 163 <incDir> 164 <pElem>.</pElem> 165 </incDir> 166 </cTool> 167 <ccTool> 168 <incDir> 169 <pElem>.</pElem> 170 </incDir> 171 </ccTool> 172 <linkerTool> 173 <output>${TESTDIR}/TestFiles/f1</output> 174 </linkerTool> 175 </folder> 111 176 <item path="fep.h" ex="false" tool="3" flavor2="0"> 112 177 </item> … … 116 181 </item> 117 182 <item path="network.h" ex="false" tool="3" flavor2="0"> 183 </item> 184 <item path="tests/HighwaysParserTest.cpp" ex="false" tool="1" flavor2="0"> 185 </item> 186 </conf> 187 <conf name="testHighwaysParser" type="1"> 188 <toolsSet> 189 <compilerSet>default</compilerSet> 190 <dependencyChecking>true</dependencyChecking> 191 <rebuildPropChanged>false</rebuildPropChanged> 192 </toolsSet> 193 <compileType> 194 <cTool> 195 <incDir> 196 <pElem>.</pElem> 197 </incDir> 198 <commandLine>`cppunit-config --cflags`</commandLine> 199 </cTool> 200 <ccTool> 201 <incDir> 202 <pElem>.</pElem> 203 </incDir> 204 <commandLine>`cppunit-config --cflags`</commandLine> 205 </ccTool> 206 <linkerTool> 207 <output>${TESTDIR}/TestFiles/f2</output> 208 <linkerLibItems> 209 <linkerOptionItem>`cppunit-config --libs`</linkerOptionItem> 210 <linkerOptionItem>`cppunit-config --libs`</linkerOptionItem> 211 <linkerOptionItem>`cppunit-config --libs`</linkerOptionItem> 212 <linkerOptionItem>`cppunit-config --libs`</linkerOptionItem> 213 <linkerOptionItem>`cppunit-config --libs`</linkerOptionItem> 214 </linkerLibItems> 215 </linkerTool> 216 </compileType> 217 <item path="DataPacker.cpp" ex="false" tool="1" flavor2="0"> 218 </item> 219 <item path="DataPacker.h" ex="false" tool="3" flavor2="0"> 220 </item> 221 <item path="FEPSim.cpp" ex="false" tool="1" flavor2="0"> 222 </item> 223 <item path="FEPSim.h" ex="false" tool="3" flavor2="0"> 224 </item> 225 <item path="HighwaysParser.cpp" ex="false" tool="1" flavor2="0"> 226 </item> 227 <item path="HighwaysParser.h" ex="false" tool="3" flavor2="0"> 228 </item> 229 <item path="Main.cpp" ex="false" tool="1" flavor2="0"> 230 </item> 231 <folder path="TestFiles/f1"> 232 <cTool> 233 <incDir> 234 <pElem>.</pElem> 235 </incDir> 236 </cTool> 237 <ccTool> 238 <incDir> 239 <pElem>.</pElem> 240 </incDir> 241 </ccTool> 242 <linkerTool> 243 <output>${TESTDIR}/TestFiles/f1</output> 244 </linkerTool> 245 </folder> 246 <item path="fep.h" ex="false" tool="3" flavor2="0"> 247 </item> 248 <item path="fep_clnt.c" ex="false" tool="0" flavor2="0"> 249 </item> 250 <item path="fep_xdr.c" ex="false" tool="0" flavor2="0"> 251 </item> 252 <item path="network.h" ex="false" tool="3" flavor2="0"> 253 </item> 254 <item path="tests/HighwaysParserTest.cpp" ex="false" tool="1" flavor2="0"> 118 255 </item> 119 256 </conf> -
branches/FEPSimulator/nbproject/private/Makefile-variables.mk
r77 r209 6 6 # Debug configuration 7 7 # Release configuration 8 # testHighwaysParser configuration -
branches/FEPSimulator/nbproject/private/configurations.xml
r87 r209 75 75 </runprofile> 76 76 </conf> 77 <conf name="testHighwaysParser" type="1"> 78 <toolsSet> 79 <developmentServer>localhost</developmentServer> 80 <platform>4</platform> 81 </toolsSet> 82 <dbx_gdbdebugger version="1"> 83 <gdb_pathmaps> 84 </gdb_pathmaps> 85 <gdb_interceptlist> 86 <gdbinterceptoptions gdb_all="false" gdb_unhandled="true" gdb_unexpected="true"/> 87 </gdb_interceptlist> 88 <gdb_options> 89 <DebugOptions> 90 </DebugOptions> 91 </gdb_options> 92 <gdb_buildfirst gdb_buildfirst_overriden="false" gdb_buildfirst_old="false"/> 93 </dbx_gdbdebugger> 94 <nativedebugger version="1"> 95 <engine>gdb</engine> 96 </nativedebugger> 97 <runprofile version="9"> 98 <runcommandpicklist> 99 <runcommandpicklistitem>"${OUTPUT_PATH}"</runcommandpicklistitem> 100 </runcommandpicklist> 101 <runcommand>"${OUTPUT_PATH}"</runcommand> 102 <rundir></rundir> 103 <buildfirst>true</buildfirst> 104 <terminal-type>0</terminal-type> 105 <remove-instrumentation>0</remove-instrumentation> 106 <environment> 107 </environment> 108 </runprofile> 109 </conf> 77 110 </confs> 78 111 </configurationDescriptor> -
branches/FEPSimulator/nbproject/private/private.xml
r208 r209 14 14 <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/FEPSim.cpp</file> 15 15 <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/network.h</file> 16 <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/Makefile</file> 16 17 </group> 17 18 </open-files> -
branches/FEPSimulator/nbproject/project.xml
r80 r209 20 20 <type>1</type> 21 21 </confElem> 22 <confElem> 23 <name>testHighwaysParser</name> 24 <type>1</type> 25 </confElem> 22 26 </confList> 23 27 <formatting>
Note: See TracChangeset
for help on using the changeset viewer.
