summaryrefslogtreecommitdiff
path: root/test/files/instrumented/InstrumentationTest.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/instrumented/InstrumentationTest.scala')
-rw-r--r--test/files/instrumented/InstrumentationTest.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/files/instrumented/InstrumentationTest.scala b/test/files/instrumented/InstrumentationTest.scala
new file mode 100644
index 0000000000..ec5314c624
--- /dev/null
+++ b/test/files/instrumented/InstrumentationTest.scala
@@ -0,0 +1,14 @@
+import scala.tools.partest.instrumented.Instrumentation._
+
+/** Tests if instrumentation itself works correctly */
+object Test {
+ def main(args: Array[String]) {
+ // force predef initialization before profiling
+ Predef
+ startProfiling()
+ // should box the boolean
+ println(true)
+ stopProfiling()
+ printStatistics()
+ }
+}