From f45ea36183741823c69ee47ef252a68b9dce5dd7 Mon Sep 17 00:00:00 2001 From: Geoffrey Washburn Date: Fri, 8 Feb 2008 14:46:32 +0000 Subject: Fixed #368: - added assertions to cause failure earlier - added test case - use BatchSourceFile length (characters) rather than file length (bytes) --- test/files/script/utf8.check | 2 ++ test/files/script/utf8.scala | 26 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 test/files/script/utf8.check create mode 100755 test/files/script/utf8.scala (limited to 'test/files') diff --git a/test/files/script/utf8.check b/test/files/script/utf8.check new file mode 100644 index 0000000000..29dc0518ff --- /dev/null +++ b/test/files/script/utf8.check @@ -0,0 +1,2 @@ +QWERTY +ЙЦУКЕН diff --git a/test/files/script/utf8.scala b/test/files/script/utf8.scala new file mode 100755 index 0000000000..a47828ad37 --- /dev/null +++ b/test/files/script/utf8.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" "$@" +!# + +/*Comment Комментарий*/ +Console.println("QWERTY"); +Console.println("ЙЦУКЕН"); -- cgit v1.2.3