summaryrefslogtreecommitdiff
path: root/test/disabled
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-29 20:22:22 +0000
committerPaul Phillips <paulp@improving.org>2011-03-29 20:22:22 +0000
commit88fbb71848b56ae5cb2b8ad7833cde21ce3937d9 (patch)
treec550433c5657b1477704d90fb4836775c798dbed /test/disabled
parent1caac54694602ad5ae48c3cbb8394b7263b132e4 (diff)
downloadscala-88fbb71848b56ae5cb2b8ad7833cde21ce3937d9.tar.gz
scala-88fbb71848b56ae5cb2b8ad7833cde21ce3937d9.tar.bz2
scala-88fbb71848b56ae5cb2b8ad7833cde21ce3937d9.zip
Disabled all the script tests.
breaking the distribution build. No review.
Diffstat (limited to 'test/disabled')
-rw-r--r--test/disabled/script/fact.args1
-rwxr-xr-xtest/disabled/script/fact.bat17
-rw-r--r--test/disabled/script/fact.check1
-rwxr-xr-xtest/disabled/script/fact.scala30
-rwxr-xr-xtest/disabled/script/second.bat3
-rw-r--r--test/disabled/script/second.check1
-rwxr-xr-xtest/disabled/script/second.scala3
-rwxr-xr-xtest/disabled/script/t1015.bat12
-rwxr-xr-xtest/disabled/script/t1015.scala26
-rwxr-xr-xtest/disabled/script/t1017.bat15
-rwxr-xr-xtest/disabled/script/t1017.scala29
11 files changed, 138 insertions, 0 deletions
diff --git a/test/disabled/script/fact.args b/test/disabled/script/fact.args
new file mode 100644
index 0000000000..7ed6ff82de
--- /dev/null
+++ b/test/disabled/script/fact.args
@@ -0,0 +1 @@
+5
diff --git a/test/disabled/script/fact.bat b/test/disabled/script/fact.bat
new file mode 100755
index 0000000000..bee0ba25c6
--- /dev/null
+++ b/test/disabled/script/fact.bat
@@ -0,0 +1,17 @@
+::#!
+:: fact - A simple Scala batch file that prints out the factorial
+:: of the argument specified on the command line.
+
+@echo off
+call scala -nocompdaemon %0 %*
+goto :eof
+::!#
+
+
+val x = argv(0).toInt
+
+def fact(x: Int):Int =
+ if(x==0) 1
+ else x*fact(x-1)
+
+Console.println("fact(" + x + ") = " + fact(x))
diff --git a/test/disabled/script/fact.check b/test/disabled/script/fact.check
new file mode 100644
index 0000000000..22aa60821e
--- /dev/null
+++ b/test/disabled/script/fact.check
@@ -0,0 +1 @@
+fact(5) = 120
diff --git a/test/disabled/script/fact.scala b/test/disabled/script/fact.scala
new file mode 100755
index 0000000000..d48dac6f0f
--- /dev/null
+++ b/test/disabled/script/fact.scala
@@ -0,0 +1,30 @@
+#!/bin/sh
+# fact - A simple Scala script that prints out the factorial of
+# the argument specified on the command line.
+
+cygwin=false;
+case "`uname`" in
+ CYGWIN*) cygwin=true ;;
+esac
+
+SOURCE="$0";
+if $cygwin; then
+ if [ "$OS" = "Windows_NT" ] && cygpath -m .>/dev/null 2>/dev/null ; then
+ format=mixed
+ else
+ format=windows
+ fi
+ SOURCE=`cygpath --$format "$SOURCE"`;
+fi
+
+exec scala -nocompdaemon "$SOURCE" "$@"
+!#
+
+
+val x = argv(0).toInt
+
+def fact(x: Int):Int =
+ if(x==0) 1
+ else x*fact(x-1)
+
+Console.println("fact(" + x + ") = " + fact(x))
diff --git a/test/disabled/script/second.bat b/test/disabled/script/second.bat
new file mode 100755
index 0000000000..0d7085954d
--- /dev/null
+++ b/test/disabled/script/second.bat
@@ -0,0 +1,3 @@
+@echo off
+
+scala -nocompdaemon -e "println(\"My second argument is \" + args(1))" arg1 arg2
diff --git a/test/disabled/script/second.check b/test/disabled/script/second.check
new file mode 100644
index 0000000000..a105b862a1
--- /dev/null
+++ b/test/disabled/script/second.check
@@ -0,0 +1 @@
+My second argument is arg2
diff --git a/test/disabled/script/second.scala b/test/disabled/script/second.scala
new file mode 100755
index 0000000000..48b8d73815
--- /dev/null
+++ b/test/disabled/script/second.scala
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+scala -nocompdaemon -e 'println("My second argument is " + args(1))' arg1 arg2
diff --git a/test/disabled/script/t1015.bat b/test/disabled/script/t1015.bat
new file mode 100755
index 0000000000..7475313d7e
--- /dev/null
+++ b/test/disabled/script/t1015.bat
@@ -0,0 +1,12 @@
+::#!
+:: t1015 - <description>.
+
+@echo off
+call scala -nocompdaemon %0 %*
+goto :eof
+::!#
+
+case class Test(one : Int, two : Int)
+object Test{
+ def apply(one : Int): Test = Test(one, 2);
+}
diff --git a/test/disabled/script/t1015.scala b/test/disabled/script/t1015.scala
new file mode 100755
index 0000000000..52d67bd6cc
--- /dev/null
+++ b/test/disabled/script/t1015.scala
@@ -0,0 +1,26 @@
+#!/bin/sh
+# fact - A simple Scala script that prints out the factorial of
+# the argument specified on the command line.
+
+cygwin=false;
+case "`uname`" in
+ CYGWIN*) cygwin=true ;;
+esac
+
+SOURCE="$0";
+if $cygwin; then
+ if [ "$OS" = "Windows_NT" ] && cygpath -m .>/dev/null 2>/dev/null ; then
+ format=mixed
+ else
+ format=windows
+ fi
+ SOURCE=`cygpath --$format "$SOURCE"`;
+fi
+
+exec scala -nocompdaemon "$SOURCE" "$@"
+!#
+
+case class Test(one : Int, two : Int)
+object Test{
+ def apply(one : Int): Test = Test(one, 2);
+}
diff --git a/test/disabled/script/t1017.bat b/test/disabled/script/t1017.bat
new file mode 100755
index 0000000000..369dbd2aca
--- /dev/null
+++ b/test/disabled/script/t1017.bat
@@ -0,0 +1,15 @@
+::#!
+::# t1017 - <description>.
+
+@echo off
+call scala -nocompdaemon %0 %*
+goto :eof
+::!#
+
+def foo = {
+ bar
+}
+
+var x = 1
+
+def bar = 1
diff --git a/test/disabled/script/t1017.scala b/test/disabled/script/t1017.scala
new file mode 100755
index 0000000000..d1b43ea923
--- /dev/null
+++ b/test/disabled/script/t1017.scala
@@ -0,0 +1,29 @@
+#!/bin/sh
+# fact - A simple Scala script that prints out the factorial of
+# the argument specified on the command line.
+
+cygwin=false;
+case "`uname`" in
+ CYGWIN*) cygwin=true ;;
+esac
+
+SOURCE="$0";
+if $cygwin; then
+ if [ "$OS" = "Windows_NT" ] && cygpath -m .>/dev/null 2>/dev/null ; then
+ format=mixed
+ else
+ format=windows
+ fi
+ SOURCE=`cygpath --$format "$SOURCE"`;
+fi
+
+exec scala -nocompdaemon "$SOURCE" "$@"
+!#
+
+def foo = {
+ bar
+}
+
+var x = 1
+
+def bar = 1