aboutsummaryrefslogtreecommitdiff
path: root/test/test/CompilerTest.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/test/CompilerTest.scala')
-rw-r--r--test/test/CompilerTest.scala8
1 files changed, 2 insertions, 6 deletions
diff --git a/test/test/CompilerTest.scala b/test/test/CompilerTest.scala
index 995244986..1977d21e0 100644
--- a/test/test/CompilerTest.scala
+++ b/test/test/CompilerTest.scala
@@ -438,12 +438,8 @@ abstract class CompilerTest {
processFileDir(sourceFile, { sf =>
if (extensionsToCopy.contains(sf.extension)) {
dest.parent.jfile.mkdirs
- dest.toFile.writeAll("/* ==========================================\n",
- " * ========= AUTOMATICALLY GENERATED ========\n",
- " * ========= DO NOT EDIT THIS FILE ==========\n",
- " * ==========================================\n",
- " * Original: " + sf.toString + " */\n\n",
- sf.slurp())
+ dest.toFile.writeAll("/* !!!!! WARNING: DO NOT MODIFY. Original is at: $sf !!!!! */",
+ sf.slurp())
} else {
log(s"WARNING: ignoring $sf")
}