summaryrefslogtreecommitdiff
path: root/test/benchmark/sources/viewtest/build.xml
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-16 18:20:15 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-16 18:20:15 +0000
commit17e2b1c2a6f69ba74e79c30d1e44195fe732e3e3 (patch)
treebb804b4038eb6d0dee58b77cea8bd2dcc6f42dc4 /test/benchmark/sources/viewtest/build.xml
parente70a1a24ef7a7b596a92e1853fd44e96f36ad245 (diff)
downloadscala-17e2b1c2a6f69ba74e79c30d1e44195fe732e3e3.tar.gz
scala-17e2b1c2a6f69ba74e79c30d1e44195fe732e3e3.tar.bz2
scala-17e2b1c2a6f69ba74e79c30d1e44195fe732e3e3.zip
Removed old scala tests from new Scala core mod...
Removed old scala tests from new Scala core module.
Diffstat (limited to 'test/benchmark/sources/viewtest/build.xml')
-rw-r--r--test/benchmark/sources/viewtest/build.xml36
1 files changed, 0 insertions, 36 deletions
diff --git a/test/benchmark/sources/viewtest/build.xml b/test/benchmark/sources/viewtest/build.xml
deleted file mode 100644
index 0816f75a18..0000000000
--- a/test/benchmark/sources/viewtest/build.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<project name="viewtest" default="run">
-
- <import file="../../predef.xml"/>
-
- <target name="init">
- <mkdir dir="${benchmark.classes.dir}/${ant.project.name}"/>
- </target>
-
- <!-- Compile the viewtest benchmark without optimizations -->
- <target name="compile-noopt"
- description="Compile the ${ant.project.name} benchmark with no optimizations">
- <compile-benchmark files="${benchmark.sources.dir}/${ant.project.name}/viewtest.scala"
- destination="${benchmark.classes.dir}/${ant.project.name}/noopt"/>
- </target>
-
- <!-- Compile the viewtest benchmark with optimizations -->
- <target name="compile-opt"
- description="Compile the ${ant.project.name} benchmark with opt">
- <compile-benchmark files="${benchmark.sources.dir}/${ant.project.name}/viewtest.scala"
- destination="${benchmark.classes.dir}/${ant.project.name}/opt"
- additionalArgs="-separate:no -Xinline"/>
- </target>
-
-
- <target name="run" depends="init,compile-noopt,compile-opt"
- description="Run this benchmark">
- <run-benchmark location="${benchmark.classes.dir}/${ant.project.name}/noopt"/>
- <run-benchmark location="${benchmark.classes.dir}/${ant.project.name}/opt"/>
- </target>
-
- <target name="clean.benchmark"
- description="Clean the object files for ${ant.project.name} benchmark">
- <delete dir="${benchmark.classes.dir}/${ant.project.name}"/>
- </target>
-
-</project>