From 4fb358b4ae286de7dd30fd3143aeabc689636876 Mon Sep 17 00:00:00 2001 From: michelou Date: Wed, 8 Nov 2006 10:34:03 +0000 Subject: added ant task "FastScalac" and updated test su... added ant task "FastScalac" and updated test suite accordingly --- test/files/ant/fsc-build.xml | 31 ++++++++ test/files/ant/fsc.check | 13 ++++ test/files/ant/fsc.scala | 6 ++ test/files/ant/imported.xml | 143 ++++++++++++++++++++++++++++++++++++ test/files/ant/scalac-build.xml | 31 ++++++++ test/files/ant/scalac.check | 13 ++++ test/files/ant/scalac.scala | 6 ++ test/files/ant/test-build.xml | 158 ---------------------------------------- test/files/ant/test.check | 13 ---- test/files/ant/test.scala | 6 -- 10 files changed, 243 insertions(+), 177 deletions(-) create mode 100644 test/files/ant/fsc-build.xml create mode 100644 test/files/ant/fsc.check create mode 100644 test/files/ant/fsc.scala create mode 100644 test/files/ant/imported.xml create mode 100644 test/files/ant/scalac-build.xml create mode 100644 test/files/ant/scalac.check create mode 100644 test/files/ant/scalac.scala delete mode 100644 test/files/ant/test-build.xml delete mode 100644 test/files/ant/test.check delete mode 100644 test/files/ant/test.scala (limited to 'test/files/ant') diff --git a/test/files/ant/fsc-build.xml b/test/files/ant/fsc-build.xml new file mode 100644 index 0000000000..5941ae8568 --- /dev/null +++ b/test/files/ant/fsc-build.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/test/files/ant/fsc.check b/test/files/ant/fsc.check new file mode 100644 index 0000000000..d6c4f9078f --- /dev/null +++ b/test/files/ant/fsc.check @@ -0,0 +1,13 @@ +Buildfile: [...]/files/ant/fsc-build.xml + +quick.init: + +latest.init: + +installed.init: + +init: + +build: + [mkdir] Created dir: [...]/files/ant/fsc-ant.obj + [fsc] Compiling 1 source file to [...]/files/ant/fsc-ant.obj diff --git a/test/files/ant/fsc.scala b/test/files/ant/fsc.scala new file mode 100644 index 0000000000..47131daac6 --- /dev/null +++ b/test/files/ant/fsc.scala @@ -0,0 +1,6 @@ +package test + +object Main { + def main(args: Array[String]): Unit = + Console.println(args.toList) +} diff --git a/test/files/ant/imported.xml b/test/files/ant/imported.xml new file mode 100644 index 0000000000..1bb2318a8f --- /dev/null +++ b/test/files/ant/imported.xml @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/files/ant/scalac-build.xml b/test/files/ant/scalac-build.xml new file mode 100644 index 0000000000..dcbc420800 --- /dev/null +++ b/test/files/ant/scalac-build.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/test/files/ant/scalac.check b/test/files/ant/scalac.check new file mode 100644 index 0000000000..c7bd156484 --- /dev/null +++ b/test/files/ant/scalac.check @@ -0,0 +1,13 @@ +Buildfile: [...]/files/ant/scalac-build.xml + +quick.init: + +latest.init: + +installed.init: + +init: + +build: + [mkdir] Created dir: [...]/files/ant/scalac-ant.obj + [scalac] Compiling 1 source file to [...]/files/ant/scalac-ant.obj diff --git a/test/files/ant/scalac.scala b/test/files/ant/scalac.scala new file mode 100644 index 0000000000..47131daac6 --- /dev/null +++ b/test/files/ant/scalac.scala @@ -0,0 +1,6 @@ +package test + +object Main { + def main(args: Array[String]): Unit = + Console.println(args.toList) +} diff --git a/test/files/ant/test-build.xml b/test/files/ant/test-build.xml deleted file mode 100644 index 7d28eccb47..0000000000 --- a/test/files/ant/test-build.xml +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/test/files/ant/test.check b/test/files/ant/test.check deleted file mode 100644 index 6675558506..0000000000 --- a/test/files/ant/test.check +++ /dev/null @@ -1,13 +0,0 @@ -Buildfile: [...]/files/ant/test-build.xml - -quick.init: - -latest.init: - -installed.init: - -init: - -build: - [mkdir] Created dir: [...]/files/ant/test-ant.obj - [scalac] Compiling 1 source file to [...]/files/ant/test-ant.obj diff --git a/test/files/ant/test.scala b/test/files/ant/test.scala deleted file mode 100644 index 47131daac6..0000000000 --- a/test/files/ant/test.scala +++ /dev/null @@ -1,6 +0,0 @@ -package test - -object Main { - def main(args: Array[String]): Unit = - Console.println(args.toList) -} -- cgit v1.2.3