Skip to content
Snippets Groups Projects
Commit 5cef8f23 authored by Elemer Lelik's avatar Elemer Lelik
Browse files

Merge pull request #4 from alovassy/master

fixing TITAN Executor API test build and runner script: removed refer…
parents feade998 48a86384
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- <!--
Copyright (c) 2000-2015 Ericsson Telecom AB Copyright (c) 2000-2016 Ericsson Telecom AB
All rights reserved. This program and the accompanying materials All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0 are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html http://www.eclipse.org/legal/epl-v10.html
Contributors:
Janos Zoltan Szabo – initial implementation
--> -->
<project basedir="." default="build" name="TITAN_Executor_API_test"> <project basedir="." default="build" name="TITAN_Executor_API_test">
<property environment="env"/> <property environment="env"/>
<property name="LIB" value="../../../titan_playground/jar"/>
<property name="junit.output.dir" value="junit"/> <property name="junit.output.dir" value="junit"/>
<property name="TITAN_Executor_API.location" value="../TITAN_Executor_API"/> <property name="TITAN_Executor_API.location" value="../TITAN_Executor_API"/>
<property name="debuglevel" value="source,lines,vars"/> <property name="debuglevel" value="source,lines,vars"/>
<property name="target" value="1.7"/> <property name="target" value="1.7"/>
<property name="source" value="1.7"/> <property name="source" value="1.7"/>
<path id="JUnit 4.libraryclasspath"> <path id="JUnit 4.libraryclasspath">
<pathelement location="${LIB}/org.junit_4.11.0.v201303080030/junit.jar"/> <pathelement location="${junit.full}"/>
<pathelement location="${LIB}/org.hamcrest.core_1.3.0.v201303031735.jar"/> <pathelement location="${hamcrest.full}"/>
</path> </path>
<path id="TITAN_Executor_API.classpath"> <path id="TITAN_Executor_API.classpath">
<pathelement location="${TITAN_Executor_API.location}/bin"/> <pathelement location="${TITAN_Executor_API.location}/bin"/>
......
############################################################################### ###############################################################################
# Copyright (c) 2000-2015 Ericsson Telecom AB # Copyright (c) 2000-2016 Ericsson Telecom AB
# All rights reserved. This program and the accompanying materials # All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0 # are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at # which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html # http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# Janos Zoltan Szabo – initial implementation
#
############################################################################### ###############################################################################
# EDIT THESE LINES TO SET CORRECT JAR LOCATIONS # EDIT THESE LINES TO SET CORRECT JAR LOCATIONS
LIB_DIR_GIT=$HOME/git/titan_playground/jar JUNIT_FULL=$HOME/lib/org.junit_4.11.0.v201303080030/junit.jar
HAMCREST_FULL=$HOME/lib/org.hamcrest.core_1.3.0.v201303031735.jar
# short file name
JUNIT_JAR=junit.jar
HAMCREST_JAR=org.hamcrest.core_1.3.0.v201303031735.jar
# full path
JUNIT_FULL=${LIB_DIR_GIT}/org.junit_4.11.0.v201303080030/${JUNIT_JAR}
HAMCREST_FULL=${LIB_DIR_GIT}/${HAMCREST_JAR}
#--------------------------------------------------------------------- #---------------------------------------------------------------------
# DO NOT EDIT AFTER THIS LINE # DO NOT EDIT AFTER THIS LINE
...@@ -77,6 +74,7 @@ file_exist ${HAMCREST_FULL} ...@@ -77,6 +74,7 @@ file_exist ${HAMCREST_FULL}
# run test (and build its dependencies if needed) # run test (and build its dependencies if needed)
ant \ ant \
-lib ${JUNIT_FULL} \ -Djunit.full=${JUNIT_FULL} \
-lib ${HAMCREST_FULL} \ -Dhamcrest.full=${HAMCREST_FULL} \
TITAN_Executor_API_test TITAN_Executor_API_test
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment