From 88fbb71848b56ae5cb2b8ad7833cde21ce3937d9 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Tue, 29 Mar 2011 20:22:22 +0000 Subject: Disabled all the script tests. breaking the distribution build. No review. --- test/disabled/script/fact.args | 1 + test/disabled/script/fact.bat | 17 +++++++++++++++++ test/disabled/script/fact.check | 1 + test/disabled/script/fact.scala | 30 ++++++++++++++++++++++++++++++ test/disabled/script/second.bat | 3 +++ test/disabled/script/second.check | 1 + test/disabled/script/second.scala | 3 +++ test/disabled/script/t1015.bat | 12 ++++++++++++ test/disabled/script/t1015.scala | 26 ++++++++++++++++++++++++++ test/disabled/script/t1017.bat | 15 +++++++++++++++ test/disabled/script/t1017.scala | 29 +++++++++++++++++++++++++++++ 11 files changed, 138 insertions(+) create mode 100644 test/disabled/script/fact.args create mode 100755 test/disabled/script/fact.bat create mode 100644 test/disabled/script/fact.check create mode 100755 test/disabled/script/fact.scala create mode 100755 test/disabled/script/second.bat create mode 100644 test/disabled/script/second.check create mode 100755 test/disabled/script/second.scala create mode 100755 test/disabled/script/t1015.bat create mode 100755 test/disabled/script/t1015.scala create mode 100755 test/disabled/script/t1017.bat create mode 100755 test/disabled/script/t1017.scala (limited to 'test/disabled/script') 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 - . + +@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 - . + +@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 -- cgit v1.2.3