From 25048bc73741846107c18ed01e0e9f6f07785379 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Mon, 20 Mar 2017 17:13:56 -0700 Subject: rm -r test/{flaky,disabled*,checker-tests,support,debug} keeping this stuff, somewhere, forever and ever and ever is what version control is for. who dares disturb the ancient and accursed tomb of all this code...? --- 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 deletions(-) delete mode 100644 test/disabled/script/fact.args delete mode 100755 test/disabled/script/fact.bat delete mode 100644 test/disabled/script/fact.check delete mode 100755 test/disabled/script/fact.scala delete mode 100755 test/disabled/script/second.bat delete mode 100644 test/disabled/script/second.check delete mode 100755 test/disabled/script/second.scala delete mode 100755 test/disabled/script/t1015.bat delete mode 100755 test/disabled/script/t1015.scala delete mode 100755 test/disabled/script/t1017.bat delete 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 deleted file mode 100644 index 7ed6ff82de..0000000000 --- a/test/disabled/script/fact.args +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/test/disabled/script/fact.bat b/test/disabled/script/fact.bat deleted file mode 100755 index 6f02b62a36..0000000000 --- a/test/disabled/script/fact.bat +++ /dev/null @@ -1,17 +0,0 @@ -::#! -:: 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 deleted file mode 100644 index 22aa60821e..0000000000 --- a/test/disabled/script/fact.check +++ /dev/null @@ -1 +0,0 @@ -fact(5) = 120 diff --git a/test/disabled/script/fact.scala b/test/disabled/script/fact.scala deleted file mode 100755 index d48dac6f0f..0000000000 --- a/test/disabled/script/fact.scala +++ /dev/null @@ -1,30 +0,0 @@ -#!/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 deleted file mode 100755 index 222372d543..0000000000 --- a/test/disabled/script/second.bat +++ /dev/null @@ -1,3 +0,0 @@ -@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 deleted file mode 100644 index a105b862a1..0000000000 --- a/test/disabled/script/second.check +++ /dev/null @@ -1 +0,0 @@ -My second argument is arg2 diff --git a/test/disabled/script/second.scala b/test/disabled/script/second.scala deleted file mode 100755 index 48b8d73815..0000000000 --- a/test/disabled/script/second.scala +++ /dev/null @@ -1,3 +0,0 @@ -#!/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 deleted file mode 100755 index 4eddc800a8..0000000000 --- a/test/disabled/script/t1015.bat +++ /dev/null @@ -1,12 +0,0 @@ -::#! -:: 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 deleted file mode 100755 index 52d67bd6cc..0000000000 --- a/test/disabled/script/t1015.scala +++ /dev/null @@ -1,26 +0,0 @@ -#!/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 deleted file mode 100755 index 0df49c663c..0000000000 --- a/test/disabled/script/t1017.bat +++ /dev/null @@ -1,15 +0,0 @@ -::#! -::# 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 deleted file mode 100755 index 2600f4f553..0000000000 --- a/test/disabled/script/t1017.scala +++ /dev/null @@ -1,29 +0,0 @@ -#!/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