Commit afcc21c5 authored by Ian Craggs's avatar Ian Craggs

Set property correctly

parent 22dc82e1
...@@ -15,12 +15,12 @@ ...@@ -15,12 +15,12 @@
<property name="libname.async" value="mqttv3a" /> <property name="libname.async" value="mqttv3a" />
<property name="libname.async.ssl" value="mqttv3as" /> <property name="libname.async.ssl" value="mqttv3as" />
<property name="ssl" value="yes" /> <property name="ssl" value="yes" />
<property name="test.hostname" value="m2m.eclipse.org"/>
<target name="init"> <target name="init">
<tstamp> <tstamp>
<format property="buildTimestamp" pattern="yyyyMMddHHmm" /> <format property="buildTimestamp" pattern="yyyyMMddHHmm" />
</tstamp> </tstamp>
<property name="test.hostname" value="m2m.eclipse.org"/>
<fileset id="sync.source.fileset" dir="src"> <fileset id="sync.source.fileset" dir="src">
<include name="*.c"/> <include name="*.c"/>
...@@ -167,7 +167,7 @@ ...@@ -167,7 +167,7 @@
<target name="runAtest"> <target name="runAtest">
<exec executable="./${aTest}" failonerror="true" dir="${output.folder}" > <exec executable="./${aTest}" failonerror="true" dir="${output.folder}" >
<arg value="--connection" /> <arg value="--connection" />
<arg value="tcp://${test.hostname}:1883" /> <arg value="tcp://${test.hostname}:18883" />
<env key="LD_LIBRARY_PATH" value="." /> <env key="LD_LIBRARY_PATH" value="." />
</exec> </exec>
</target> </target>
...@@ -175,7 +175,7 @@ ...@@ -175,7 +175,7 @@
<target name="runSSLtest"> <target name="runSSLtest">
<exec executable="./${aTest}" failonerror="true" dir="${output.folder}" > <exec executable="./${aTest}" failonerror="true" dir="${output.folder}" >
<arg value="--hostname" /> <arg value="--hostname" />
<arg value="test.hostname" /> <arg value="${test.hostname}" />
<env key="LD_LIBRARY_PATH" value="." /> <env key="LD_LIBRARY_PATH" value="." />
</exec> </exec>
</target> </target>
...@@ -232,7 +232,7 @@ ...@@ -232,7 +232,7 @@
</copy> </copy>
</target> </target>
<!-- target name="full" depends="init, version, compile, doc, copy" --> <!-- target name="full" depends="init, version, compile, test, doc, copy" -->
<target name="full" depends="init, version, compile, test" /> <target name="full" depends="init, version, compile, test" />
</project> </project>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment