contikitests-commits Mailing List for Contiki Simulation-based Tests
Runs Contiki's simulation-based tests
Brought to you by:
fros4943
You can subscribe to this list here.
| 2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(7) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|
|
From: Fredrik Ö. <fro...@sh...> - 2012-05-16 10:18:08
|
Summary of changes:
0 files changed, 0 insertions(+), 0 deletions(-)
mode change 100755 => 100644 README.txt
mode change 100755 => 100644 build.xml
mode change 100755 => 100644 configs/README.txt
mode change 100755 => 100644 configs/TEMPLATE.config
mode change 100755 => 100644 configs/ex_instantcontiki.config
mode change 100755 => 100644 contikitests.config
- Log -----------------------------------------------------------------
commit 72cc3469a8d20038dd0bb0bb540dff307b4c2631
Author: Fredrik Osterlind <fr...@si...>
Date: Tue May 15 18:05:08 2012 +0200
removed executable flags
diff --git a/README.txt b/README.txt
old mode 100755
new mode 100644
diff --git a/build.xml b/build.xml
old mode 100755
new mode 100644
diff --git a/configs/README.txt b/configs/README.txt
old mode 100755
new mode 100644
diff --git a/configs/TEMPLATE.config b/configs/TEMPLATE.config
old mode 100755
new mode 100644
diff --git a/configs/ex_instantcontiki.config b/configs/ex_instantcontiki.config
old mode 100755
new mode 100644
diff --git a/contikitests.config b/contikitests.config
old mode 100755
new mode 100644
-----------------------------------------------------------------------
--
contikitests
|
|
From: Fredrik Ö. <fro...@sh...> - 2012-05-14 15:28:29
|
Summary of changes:
- Log -----------------------------------------------------------------
commit f732909dac880b21a8446c17e06b0a956cc268a3
Author: Fredrik Osterlind <fr...@si...>
Date: Mon May 14 15:30:39 2012 +0200
initial readme file
diff --git a/README.txt b/README.txt
new file mode 100755
index 0000000..a56bd37
--- /dev/null
+++ b/README.txt
@@ -0,0 +1 @@
+Runs Contiki's (http://www.contiki-os.org) simulation-based tests, and optionally e-mails test results to the contiki-nightly-builds mailing list.
-----------------------------------------------------------------------
--
UNNAMED PROJECT
|
|
From: Fredrik Ö. <fro...@sh...> - 2012-05-14 15:28:25
|
Summary of changes:
README.txt | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
- Log -----------------------------------------------------------------
commit 2d4ceb8e0123b5b9157a8f9a8d908b9933dd039a
Author: Fredrik Osterlind <fr...@si...>
Date: Mon May 14 17:24:03 2012 +0200
testing hooks
diff --git a/README.txt b/README.txt
index a56bd37..ca8236e 100755
--- a/README.txt
+++ b/README.txt
@@ -1 +1,4 @@
Runs Contiki's (http://www.contiki-os.org) simulation-based tests, and optionally e-mails test results to the contiki-nightly-builds mailing list.
+
+Usage:
+
-----------------------------------------------------------------------
--
UNNAMED PROJECT
|
|
From: Fredrik Ö. <fro...@sh...> - 2012-05-14 15:28:25
|
Summary of changes:
build.xml | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 51 insertions(+), 0 deletions(-)
create mode 100755 build.xml
- Log -----------------------------------------------------------------
commit 076f95c5efe007694ec734b1dc50da306e324011
Author: Fredrik Osterlind <fr...@si...>
Date: Mon May 14 15:52:40 2012 +0200
ant build file
diff --git a/build.xml b/build.xml
new file mode 100755
index 0000000..0103382
--- /dev/null
+++ b/build.xml
@@ -0,0 +1,51 @@
+<?xml version="1.0"?>
+
+<project name="Run Contiki tests" default="run" basedir=".">
+ <property name="args" value="" />
+
+ <target name="help">
+ <echo>
+ First, configure contikitests.config for your system.
+
+ To run the Contiki tests using contikitests.config:
+ > ant run
+
+ To run the Contiki tests with a specified configuration:
+ > ant run -Dargs=[configfile]
+ </echo>
+ </target>
+
+ <target name="init">
+ <tstamp/>
+ </target>
+
+ <target name="compile" depends="init">
+ <mkdir dir="build"/>
+ <javac srcdir="src" destdir="build" debug="on">
+ <classpath>
+ <pathelement location="lib/mail.jar"/>
+ </classpath>
+ </javac>
+ </target>
+
+ <target name="clean" depends="init">
+ <delete dir="build"/>
+ </target>
+
+ <target name="run" depends="init, compile">
+ <java fork="yes" dir="." classname="org.contikios.contikitests.ContikiTests" maxmemory="512m">
+ <arg line="${args}"/>
+ <classpath>
+ <pathelement path="build"/>
+ <pathelement path="lib/mail.jar"/>
+ </classpath>
+ </java>
+ </target>
+
+ <target name="java_version" depends="init">
+ <exec executable="javac" dir="build">
+ <arg value="-version"/>
+ </exec>
+ </target>
+
+</project>
-----------------------------------------------------------------------
--
UNNAMED PROJECT
|