summaryrefslogtreecommitdiff
path: root/test/disabled
Commit message (Collapse)AuthorAgeFilesLines
* SI-7933 REPL javax.script eval is cached resultRaphael Jolly2014-01-312-20/+0
| | | | | | | The problem is that the repl underneath the script engine evaluates input to val res0..resN, so it is a one shot operation. To allow repetition, compile(script) now returns a CompiledScript object whose eval method can be called any number of times.
* Modularize continuations plugin.Adriaan Moors2013-12-132-16/+0
| | | | | The continuations plugin and library will still ship with 2.11 (albeit unsupported). They now reside at https://github.com/scala/scala-continuations.
* deprecate Pair and TripleDen Shabalin2013-11-201-8/+8
|
* Revert "temporarily disables run/reflection-sync-subtypes"Jason Zaugg2013-11-141-20/+0
| | | | | | | | | This reverts commit 04e2dbb29830d0e511cdfa8c132a9fad91d657ed, by avoiding the ill-fated attempt to short-circuit the global reflection lock. I think we can do better performance wise, but lets at least get something correct to start with.
* Remove empty check files and flags files.Jason Zaugg2013-10-273-0/+0
| | | | for f in $(find test -name '*.check' -o -name '*.flags'); do [[ $(wc -c $f | sed -E 's/ *([0-9]+).*/\1/') == "0" ]] && rm $f; done
* Merge pull request #3068 from retronym/ticket/7020-3-1Jason Zaugg2013-10-233-50/+0
|\ | | | | Deterministic warnings for pattern matcher, take 2
| * SI-7020 Deterministic warnings for pattern matcher, take 2Jason Zaugg2013-10-223-50/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous swing at determinism, ebb01e05cbe4, made decent contact but apparently didn't hit it out of the park. The test wavered every hundred or so runs, as witnessed occasionally in nightly builds or pull request validation. I setup a test to run neg/7020.scala a few hundred times, and could trigger the failure reliably. I then swept through the pattern matcher in search of HashMap and HashSet creation, and changed them all to the Linked variety. The results of that are published in retronym#ticket/7020-3 [1]. This commit represents the careful whittling down of that patch to the minimal change required to exhibit determinism. [1] https://github.com/retronym/scala/compare/ticket/7020-3
* | temporarily disables run/reflection-sync-subtypesEugene Burmako2013-10-232-0/+20
|/ | | | | | This test has been a source of spurious failures as in, for example https://github.com/scala/scala/pull/3029#issuecomment-26811129, so I'm disabling it for the time being while I investigate the issue.
* Moving disabled tests to their rightful home.Jason Zaugg2013-10-214-0/+107
| | | | test/disabled, not test/files/disabled.
* Merge remote-tracking branch 'origin/2.10.x' into merge/2.10.x-to-master-4Jason Zaugg2013-10-185-0/+169
|\
| * Disable flaky presentation compiler test.Jason Zaugg2013-10-175-0/+161
| | | | | | | | | | | | | | | | Francois is investigating the root cause as part of his work on stabilizing Scaladoc preview in the IDE. The test seems to only fail on the windows nightly build. I suspect this is due to a slower or loaded machine.
* | SI-7845 Disable test for JSR 233Jason Zaugg2013-09-162-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | For Paul, it steals focus when it runs. For me, it fails with some platform specific extra output: -ScriptEngineManager providers.next(): javax.script.ScriptEngineFactory: Provider apple.applescript.AppleScriptEngineFactory could not be instantiated: java.lang.UnsatisfiedLinkError: no AppleScriptEngine in java.library.path n: Object = 10 12345678910 So off to the holding pen for now.
* | Merge 2.10.x into master.Adriaan Moors2013-02-203-1331/+0
|\| | | | | | | | | | | | | | | Conflicts: build.number src/compiler/scala/tools/nsc/doc/base/MemberLookupBase.scala src/compiler/scala/tools/nsc/typechecker/Macros.scala test/files/presentation/doc/doc.scala
| * Merge pull request #2135 from heathermiller/futures-cleanupsJames Iry2013-02-193-1331/+0
| |\ | | | | | | Removing disabled, unneeded futures tests
| | * Removing disabled, unneeded futures testsHeather Miller2013-02-173-1331/+0
| | |
| * | [backport] Disabled SI-6987.Paul Phillips2013-01-292-0/+44
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It causes spurious failures - a typical example: [partest] testing: [...]/files/run/t6987.scala [FAILED] [partest] did not get the string expected, full results were: [partest] Fast Scala compiler version 2.11.0-20130126-111937-f01e001c77 -- Copyright 2002-2013, LAMP/EPFL [partest] [Given arguments: -shutdown -verbose] [partest] [Transformed arguments: -shutdown -verbose -current-dir /localhome/jenkins/b/workspace/scala-checkin-manual] [partest] [VM arguments: ] [partest] java.net.ConnectException: Connection refused [partest] [Connecting to compilation daemon at port 32808 failed; re-trying...] [partest] [No compilation server running.] [partest] (cherry picked from commit 53d5df5c1d52b941732c243159de4f44456f03b4)
* | Disabled SI-6987.Paul Phillips2013-01-262-0/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It causes spurious failures - a typical example: [partest] testing: [...]/files/run/t6987.scala [FAILED] [partest] did not get the string expected, full results were: [partest] Fast Scala compiler version 2.11.0-20130126-111937-f01e001c77 -- Copyright 2002-2013, LAMP/EPFL [partest] [Given arguments: -shutdown -verbose] [partest] [Transformed arguments: -shutdown -verbose -current-dir /localhome/jenkins/b/workspace/scala-checkin-manual] [partest] [VM arguments: ] [partest] java.net.ConnectException: Connection refused [partest] [Connecting to compilation daemon at port 32808 failed; re-trying...] [partest] [No compilation server running.] [partest]
* | Fix some typosSamy Dindane2013-01-241-8/+8
| | | | | | | | | | | | Fixes mostly "a int", "a a thing" kind of typos. Also removes trailing whitespaces, useless empty lines and commented println() from "test/files/run/ctries-new/iterator.scala".
* | SI-6964 Remove build managers, both simple and refined.Jason Zaugg2013-01-121-2/+0
| | | | | | | | | | | | | | | | | | Deprecated in 2.10.0, out to pasture in 2.11.0. Users are advised to migrate to: https://github.com/typesafehub/zinc http://www.scala-sbt.org/
* | Updated copyright to 2013Carlo Dapor2013-01-021-1/+1
| |
* | SI-6769 Removes GenJVM backendJames Iry2012-12-052-4/+4
| | | | | | | | | | Get rid of GenJVM and everything that refers to it. Also get rid of GenAndroid since it's dead code that refers to GenJVM.
* | SI-6388 Remove ApplicationSimon Ochsenreither2012-10-121-0/+7
| |
* | Moved some disabled test to the right place.Paul Phillips2012-10-046-0/+30
|/ | | | It's test/disabled/XXX, not test/files/disabled/XXX.
* Normalized line endings.Paul Phillips2012-09-204-47/+47
| | | | | | This brings all the files into line with the .gitattributes settings, which should henceforth be automatically maintained by git.
* SI-5981, SI-5979, SI-5973 Closed. Maintenance to Try.Heather Miller2012-07-052-0/+7
|
* repairs the tests after the refactoring spreeEugene Burmako2012-06-081-1/+0
|
* Orphan checkfile remover.Paul Phillips2012-05-261-18/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Are these -msil checkfiles used in some secret fashion? The level of activity suggest otherwise. Since scala-nightly-msil has been disabled for over a year, it's an easy rm unless someone speaks up. % tools/rm-orphan-checkfiles Scanning for orphan check files... rm 'test/disabled/run/code.check' rm 'test/files/jvm/t1652.check' rm 'test/files/neg/macro-argtype-mismatch.check' rm 'test/files/neg/macro-noncompilertree.check' rm 'test/files/neg/macro-nontree.check' rm 'test/files/run/Course-2002-01-msil.check' rm 'test/files/run/Course-2002-02-msil.check' rm 'test/files/run/Course-2002-03-msil.check' rm 'test/files/run/Course-2002-04-msil.check' rm 'test/files/run/Course-2002-08-msil.check' rm 'test/files/run/Course-2002-09-msil.check' rm 'test/files/run/Course-2002-10-msil.check' rm 'test/files/run/absoverride-msil.check' rm 'test/files/run/bitsets-msil.check' rm 'test/files/run/boolord-msil.check' rm 'test/files/run/bugs-msil.check' rm 'test/files/run/impconvtimes-msil.check' rm 'test/files/run/infix-msil.check' rm 'test/files/run/iq-msil.check' rm 'test/files/run/macro-invalidret-doesnt-conform-to-impl-rettype.check' rm 'test/files/run/macro-rettype-mismatch.check' rm 'test/files/run/misc-msil.check' rm 'test/files/run/promotion-msil.check' rm 'test/files/run/richs-msil.check' rm 'test/files/run/runtime-msil.check' rm 'test/files/run/tuples-msil.check' rm 'test/pending/jvm/t1464.check' rm 'test/pending/run/subarray.check' rm 'test/pending/run/t0446.check' rm 'test/pending/run/t5629.check' Scanning for orphan flags files... rm 'test/files/neg/macro-argtype-mismatch.flags' rm 'test/files/neg/macro-noncompilertree.flags' rm 'test/files/neg/macro-nontree.flags' rm 'test/files/pos/anyval-children.flags' rm 'test/files/pos/t3097.flags' rm 'test/files/run/macro-invalidret-doesnt-conform-to-impl-rettype.flags' rm 'test/files/run/macro-rettype-mismatch.flags'
* migrates stdlib and compiler to tagsEugene Burmako2012-04-238-43/+43
| | | | | * all usages of ClassManifest and Manifest are replaced with tags * all manifest tests are replaced with tag tests
* removes obsolete macro testsEugene Burmako2012-04-1436-108/+0
|
*---. Merge commit 'refs/pull/387/head'; commit 'refs/pull/388/head'; commit ↵Paul Phillips2012-04-148-349/+0
|\ \ \ | | | | | | | | | | | | 'refs/pull/392/head'; commit 'refs/pull/397/head' into develop
| | | * Adapted implicits testsuite for SIP18Vlad Ureche2012-04-148-349/+0
| | | |
* | | | restores some disabled macro tests, makes checkFeature synchronous when used ↵Eugene Burmako2012-04-1433-310/+11
| |_|/ |/| | | | | | | | for macros
* | | disabling scaladoc tests. Don't know how to fix them to make them work under ↵Martin Odersky2012-04-138-0/+349
| | | | | | | | | | | | SIP 18.
* | | one more macro test sdisabled that lipped through the net before.Martin Odersky2012-04-133-0/+103
| | |
* | | disabled failing macro test; needs to be adapted to new scheme.Martin Odersky2012-04-134-0/+25
| | |
* | | Disabled macro neg tests that no longer make sense in this formMartin Odersky2012-04-1351-0/+279
|/ /
* | Merge commit 'refs/pull/383/head' into developPaul Phillips2012-04-132-22/+20
|\|
* | Disabling failing tests.Paul Phillips2012-04-125-0/+1123
|/ | | | | | | | | | I turn them over to the responsible parties. Iulian knows about the deadlock test; for philipp I presume, 07:10:29 [partest] concurrent-future.scala:97: error: not found: type FutureTimeoutException 07:10:29 [partest] throw new FutureTimeoutException(null) 07:10:29 [partest] ^ 07:10:29 [partest] one error found
* Fix for continuations issue.Paul Phillips2012-04-052-0/+16
| | | | | | | | Avoid explicit type arguments which don't conform to bounds where they could be successfully inferred. I had to disable one "neg" test which is no longer neg. Can anyone clue me in as to whether it is important?
* Revert the lisp test.Paul Phillips2012-03-282-0/+544
| | | | The lisp test enjoys the suffering of others.
* Revived the lisp test.Paul Phillips2012-03-282-544/+0
| | | | | | All hail the lisp test! Closes SI-4579.
* Disabled one failing test.Paul Phillips2012-02-225-0/+23
| | | | | One to go (which doesn't fail for me, which is interesting because it's a VerifyError.)
*-. Merge remote-tracking branches 'hubertp/issue/5452' and 'hubertp/issue/5493' ↵Paul Phillips2012-02-173-69/+0
|\ \ | | | | | | | | | into develop
| * | Closes #5452.Hubert Plociniczak2012-02-173-69/+0
| |/ | | | | | | | | | | | | | | Instead of trying to track the fallback attempts we rely on the context state to inform us which fallback is the last one. setError cannot always be called in NoBestMethodAlternativeError because inferMethodAlternative relies on side-effects. Review by @paulp.
* / Disable execution context and futures implementation in the default package.Aleksandar Prokopec2012-02-161-0/+391
|/ | | | | | | Fixed some tests so that they work now. The Transactions.scala test was failing when defined in scala.concurrent package, reporting that type `_$1` is defined twice. Until we figure out the reason for this, the package name in that test is renamed.
* Test cases which motivated preceding reversions.Paul Phillips2012-02-153-0/+69
| | | | | | See t5452 for disabled/neg/t5452 and disabled/pos/spurious-overload I give up, review by @hubertp.
* Disabled another presentation compiler test.Paul Phillips2011-12-093-0/+215
| | | | | | It foiled me right on the cusp of a successful windows nightly. https://scala-webapps.epfl.ch/jenkins/job/scala-nightly-windows/1170/consoleText
* Fix documentation stutters.Blair Zajac2011-12-063-4/+4
|
* Disabled non-deterministic tests.Paul Phillips2011-12-0561-0/+11380
| | | | | | Everyone's favorite "will they or won't they" tests, akka and timeofday. They will be welcomed back into the fold once they can stick to a decision on whether to pass or fail.
* Re-enable RedBlack's ScalaCheck test, which was disabled at r21829.Daniel C. Sobral2011-12-011-157/+0
| | | | | | | | | | I haven't been able to find any reason for that reversal, but this version is an improved version provided with SI-3796, which never got committed along with the patch. This version generates trees directly instead of using the methods under test. It also puts an upper bound on tree size and, therefore, execution time.