summaryrefslogtreecommitdiff
path: root/test/files/instrumented/InstrumentationTest.check
diff options
context:
space:
mode:
authorGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2012-07-16 11:22:40 +0200
committerGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2012-07-16 11:26:21 +0200
commit2ae253bea6401f26dddf0c3b78b4e40aefbd0b18 (patch)
treeb4b9cfc2ddf7e5e8a22ab638c0ee4b39c8327ed3 /test/files/instrumented/InstrumentationTest.check
parent39dfdb7cca23d109d07edc5884f8fb871cd0c582 (diff)
downloadscala-2ae253bea6401f26dddf0c3b78b4e40aefbd0b18.tar.gz
scala-2ae253bea6401f26dddf0c3b78b4e40aefbd0b18.tar.bz2
scala-2ae253bea6401f26dddf0c3b78b4e40aefbd0b18.zip
Partest: add `instrumented` test category.
--- (taken from README) Tests in `instrumented/` directory are executed the same way as in `run/` but they have additional byte-code instrumentation performed for profiling. You should put your tests in `instrumented/` directory if you are interested in method call counts. Examples include tests for specialization (you want to count boxing and unboxing method calls) or high-level tests for optimizer where you are interested if methods are successfuly inlined (so they should not be called at runtime) or closures are eliminated (so no constructors of closures are called). Check `scala.tools.partest.instrumented.Instrumentation` to learn how to use the instrumentation infrastructure. The instrumentation itself is achieved by attaching a Java agent to the forked VM process that injects calls to profiler. Check `scala.tools.partest.javaagent.ProfilingAgent` for details. --- A few notes on low-level details of this change: * Partest now depends on asm library for byte-code instrumentation (`build.xml`) * Build additional jar called `scala-partest-javaagent.jar` that is used with `-javaagent:` option. (`build.xml`) * Set `-javaagent:` option for all tests in `instrumented/` directory. (`RunnerManger.scala`) * Introduce a new category of tests called `instrumented`. * Add one instrumented test to demonstrate usage and test new infrastructure itself. (`InstrumentationTest.scala`) Review by @phaller.
Diffstat (limited to 'test/files/instrumented/InstrumentationTest.check')
-rw-r--r--test/files/instrumented/InstrumentationTest.check4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/instrumented/InstrumentationTest.check b/test/files/instrumented/InstrumentationTest.check
new file mode 100644
index 0000000000..3652df270a
--- /dev/null
+++ b/test/files/instrumented/InstrumentationTest.check
@@ -0,0 +1,4 @@
+true
+Method call statistics:
+ 1 scala/Predef$.println(Ljava/lang/Object;)V
+ 1 scala/runtime/BoxesRunTime.boxToBoolean(Z)Ljava/lang/Boolean;