summaryrefslogtreecommitdiff
path: root/test/files/run/t5699.scala
Commit message (Collapse)AuthorAgeFilesLines
* unset inappropriate execute bitsSeth Tisue2015-09-021-0/+0
| | | | | | | | | | I imagine these date back to old Subversion days and are probably the result of inadvertent commits from Windows users with vcs client configs. having the bit set isn't really harmful most of the time, but it's just not right, and it makes the files stand out in directory listings for no reason
* SI-3368 ReviewSom Snytt2015-04-081-1/+1
| | | | Verbose option help and test tweak.
* SI-5699 Use ParserTestSom Snytt2015-04-081-10/+2
| | | | Update the test slightly to use the rig it inspired.
* SI-7003 Partest redirects stderr to log fileSom Snytt2013-05-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some scalac output is on stderr, and it's useful to see that in the log file, especially for debugging. Adds a line filter for logs, specified as "filter: pattern" in the test source. Backslashes are made forward only when detected as paths. Test alignments: Deprecations which do not pertain to the system under test are corrected in the obvious way. When testing deprecated API, suppress warnings by deprecating the Test object. Check files are updated with useful true warnings, instead of running under -nowarn. Language feature imports as required, instead of running under -language. Language feature not required, such as casual use of postfix. Heed useful warning. Ignore broken warnings. (Rarely, -nowarn.) Inliner warnings pop up under -optimise only, so for now, just filter them out where they occur. Debug output from the test required an update.
* SI-5699 correct java parser for annotation defs.Eugene Vigdorchik2013-03-191-0/+24
Correct java source parser not to insert a constructor with the type of its value method.