Tagged Questions

The process of inserting extra diagnostic code into existing compiled code.

learn more… | top users | synonyms

13
votes
3answers
230 views

Asserting order of synchronization in Java

In highly concurrent systems, it can be difficult to be confident that your usage of locks is correct. Specifically, deadlocks can result if locks are acquired in an order that was not expected while ...
11
votes
6answers
4k views

Trace vs Debug in .NET BCL

It seems that the System.Diagnostics.Debug and System.Diagnostics.Trace are largely the same, with the notable exception that Debug usage is compiled out in a release configuration. When would you ...
10
votes
1answer
345 views

.Net Binary Deserialization Failure detection/forensics for runtime platform

I'm looking for insight on how to instrument a runtime platform to expose the source type of a Microsoft .Net binary deserialization failure. When using ...
9
votes
3answers
2k views

PL/SQL Logging - How to control?

I am looking to introduce a logging framework into our existing Oracle application to replace the use of DBMS_OUTPUT. The framework will be used primarly to aid debugging and would detail such ...
8
votes
3answers
322 views

Measuring performance in Python

I'm writing a web-application in Python, I haven't decided if I want to use Flask, web.py or something else yet, and I want to be able to do profile on the live application. There seems to be very ...
7
votes
2answers
399 views

Instrumenting C/C++ codes using LLVM

I just read about the LLVM project and that it could be used to do static analysis on C/C++ codes using the analyzer Clang which the front end of LLVM. I wanted to know if it is possible to extract ...
7
votes
2answers
130 views

How to understand and learn `instrument` package of java?

Recently, I found there is a java.lang.instrument package in jdk, which is used by many frameworks to reload classes or profile. I don't find many articles of using them, is there any resource(book, ...
6
votes
3answers
184 views

How to create a Python class decorator that is able to wrap instance, class and static methods?

I'd like to create a Python class decorator (*) that would be able to seamlessly wrap all method types the class might have: instance, class and static. This is the code I have for now, with the ...
6
votes
3answers
1k views

Ignoring report generation for specific classes in cobertura maven plugin

Ive been using cobertura plugin for report generation and instrumentation, (with surefire). Here is the issue I am facing. I am unable to make the plugin ignore report generation for specific classes ...
6
votes
5answers
546 views

Adding code to the beginning / end of methods in runtime dynamically

I know instrumentation is a technique to add trace code dynamically into the methods to enable tracing and debugging. I was wondering if this is only a "Trace" option, hard coded into the CLR to add ...
6
votes
7answers
383 views

What information should I be logging in my web app?

I finishing up a web application and I'm trying to implement some logging. I've never seen any good examples of what to log. Is it just exceptions? Are there other things I should be logging? What ...
6
votes
7answers
191 views

Instrumenting Database Access

Jeff mentioned in one of the podcasts that one of the things he always does is put in instrumentation for database calls, so that he can tell what queries are causing slowness etc. This is something ...
5
votes
2answers
60 views

Wrong number of arguments in stack when trying to instrument java bytecode

I am working on a small java bytecode instrumentation tool. The general idea is to have all of a class methods renamed with a _CONGU suffix, creating then proxy methods with the original method ...
5
votes
3answers
400 views

Identify loops in java byte code

I am trying to instrument java byte code. I want to recognize the entry and exit of a java loop, but I have found the identification of loops to be quite challenging. I have spent a good few hours ...
5
votes
5answers
2k views

VS 2010 Profiling Problem with Signed Assemblies

I have a website that uses AjaxControlToolkit.dll and Log4Net.dll; When I try to run the performance profiling tool in VS 2010 on it it gives me the following warnings "AjaxControlToolkit.dll is ...
5
votes
2answers
1k views

GUI testing with Instrumentation in Android

I want to test my Android applications UI, with keyevents and pressed buttons and so on. I've read som documentation that Instrumentation would be able to use for this purpose. Anyone with ...
5
votes
4answers
537 views

What is instrumentation?

I've heard this term used a lot in the same context as logging, but I can't seem to find a clear definition of what it actually is. Is it simply a more general class of logging/monitoring tools and ...
5
votes
4answers
7k views

Examples for Robotium

I found a tool for Instrumentation Testing called Robotium.It is easy and simple for black box testing of android applications. We can use it as follows: solo.clickOnText("Other"); ...
5
votes
3answers
347 views

Plugging in to Java compilers

I have a post-compilation step that manipulates the Java bytecode of generated classes. I'd like to make life as painless as possible for library consumers, so I'm looking at ways I can make this ...
5
votes
10answers
546 views

Instrumenting a UI

How are you instrumenting your UI's? In the past I've read that people have instrumented their user interfaces, but what I haven't found is examples or tips on how to instrument a UI. By ...
4
votes
1answer
119 views

Visual Studio 2010 crash when profiling, after analyzing report

I am profiling my C# WinForm project in VS 2010, SP1. IDE crashes after profilig is finished and analyzing is done, but results are not yet displayed. I can manualy process my report by cmd: ...
4
votes
2answers
193 views

Instrumenting C/C++ code using LLVM

I want to write a LLVM pass to instrument every memory access. Here is what I am trying to do. Given any C/C++ program (like the one given below), I am trying to insert calls to some function, before ...
4
votes
1answer
94 views

InstrumentationTestRunner: What does android:functionalTest achieve?

I am wondering what InstrumentationInfo#functionalTest is supposed to achieve. Does it have any impact on how the application environment is started?
4
votes
2answers
3k views

how to send key events to a headless emulator in an instrumentation test?

We are currently working on an instrumentation test suite which runs on our build server, but while the tests pass on a dev machine using a normal Android emulator, the builds fail on the build server ...
4
votes
2answers
139 views

Bytecode and Objects

I am working on a bytecode instrumentation project. Currently when handling objects, the verifier throws an error most of the time. So I would like to get things clear concerning rules with objects (I ...
4
votes
1answer
1k views

Dynamic bytecode instrumentation - issue

I have a problem I am not able to solve. Let's assume we have the following two classes and an inheritance relationship: public class A { } public class B extends A { public void foo() {} } I ...
4
votes
4answers
1k views

Is Object constructor called when creating an array in Java?

In Java, an array IS AN Object. My question is... is an Object constructor called when new arrays is being created? We would like to use this fact to instrument Object constructor with some extra ...
4
votes
2answers
212 views

Is it possible to get Code Coverage Analysis on an Interop Assembly?

I've asked this question over on the MSDN forums also and haven't found a resolution: http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=3686852&SiteID=1 The basic problem here as I see it is ...
3
votes
1answer
88 views

In Android, how do I find caller of a method efficiently

I am building a testing/analysis tool that requires instrumentation of Android framework classes. In that tool, the classes need to be instrumented to find out the caller of a method (i.e., method ...
3
votes
1answer
30 views

Logging the Behavior of a Binary?

I want to figure out which instructions are executed differently when a command-line flag is passed to a program on Windows, of which I have the compiled (and optimized) binary, with no debug symbols ...
3
votes
2answers
239 views

exclude a method/branch from instrumentation cobertura

I need to skip certain methods or code segments from instrumentation and code coverage. That lead me to Exclude code from code coverage with Cobertura. Then the cobertura ant page ...
3
votes
2answers
380 views

How do I make a MotionEvent to zoom?

I have an instrumentation that I want to use to test my application, but I can't seem to get the pinch zoom to simulate properly. Here is my current code. The gist of it is this: push down both finger ...
3
votes
3answers
304 views

Accessing instrumentation test resources

I am trying to find a way for my instrumentation tests to have access to string resources generated within the test package. More details: I have an Android test case which inherits from ...
3
votes
1answer
410 views

How to instrument java system classes?

I'm trying to add custom behaviour to system classes (FileInputStream/FileOutputStream). I wrote custom ClassFileTransformer with the following transform method: public byte[] transform(ClassLoader ...
3
votes
2answers
505 views

Why is there no test instrumentation for BroadcastReceiver?

Maybe I'm missing something. I want to write test cases for a BroadcastReceiver; specifically, it is for receiving the BOOT_COMPLETED event and setting an alarm for another receiver to handle later; ...
3
votes
3answers
935 views

Calculating byte-size of Java object

I am working on calculaitng the size [memory used] of a java object [hashmap] . It contains elements of different data types [at runtime] so [ no-of-elem * size-of-element] is not that good an ...
3
votes
1answer
133 views

Is it possible to use java.lang.instrument.Instrumentation in JUnit tests?

Is it possible to use java.lang.instrument.Instrumentation in JUnit tests? I am using mockrunner to simulate a Servlet and want to measure the size of objects stored in a session
3
votes
1answer
375 views

Ant build - Emma code instrumentation - JUnit tests need interfaces, Emma doesn't instrument them

I have an Ant build file where I compile the Java source code of the application and of the tests, instrument the application classes, run JUnit tests and generate JUnit and Emma code coverage ...
3
votes
1answer
160 views

Agilent E4426B signal generator locks up during multiple GPIB *SAV operations

I have a test fixture with an Agilent E4426B RF signal generator connected to a PC via a National Instrument Ethernet-to-GPIB bridge. My software is attempting to sanitize the instrument by presetting ...
3
votes
1answer
49 views

Instrumenting a string

Somewhere in C++ era i have crafted a library, which enabled string representation of the computation history. Having a math expression like: TScalar Compute(TScalar a, TScalar b, TScalar c) { ...
3
votes
2answers
568 views

How mature is java.lang.instrument?

I'll be working on a project for instrumenting a relatively complex java application, and I'm planning to use java.lang.instrument to hook into the JVM and redefine classes before they're loaded. ...
3
votes
2answers
190 views

Is there an equivalent to Java's ClassFileTransformer in .NET? (a way to replace a class)

I've been searching for this for quite a while with no luck so far. Is there an equivalent to Java's ClassFileTransformer in .NET? Basically, I want to create a class CustomClassFileTransformer (which ...
3
votes
5answers
639 views

Android InstrumentationTestRunner XML output for Hudson ingestion

I have an Android test project that I'd like to link into Hudson, but I haven't found a way to output the test results as XML instead of text. Does anyone know if there's an easy way to do this ...
3
votes
1answer
795 views

How can I use java.lang.instrument in an Eclipse RCP application?

In order to use the instrumentation features introduced in JDK 5, you can use the -javaagent flag passed to the JVM. This will inject an instance of an Instrumentation class into the static premain ...
3
votes
2answers
435 views

Find names of all classes that a Java program loads using reflection

To support a static-analysis tool I want to instrument or monitor a Java program in such a way that I can determine for every reflective call (like Method.invoke(..)): 1.) which class C this method ...
2
votes
1answer
43 views

Instrumenting the execution of a Java application (not just the bytecode)

I am doing some Java application instrumentation. But the available instrumentation tools that use ASM or BCEL only allow to instrument the bytecode. Do you guys know of some tool that can instrument ...
2
votes
3answers
91 views

is it possible to change this java code at runtime to insert some small code

I have a quite large codebase. In many places I have a piece of code like this: for (MyObjectType myobj : myList) { //...do something with myobj } MyObjectType is the basic object in my ...
2
votes
0answers
83 views

really, how to achieve hibernate runtime instrumentation?

from hibernate docs, we know that in certain case, for lazy-loading to work, we need build-time instrumentation: How to stop Hibernate from eagerly fetching many-to-one associated object ...
2
votes
1answer
39 views

After upgrading my web app from .Net 3.5 to .Net4.0, I get a security transparency rules failed

After upgrading my web app from .Net 3.5 to .Net4.0, I get a security transparency rules failed. I've never even heard of this or incorporated it into my project. Does anyone have any idea what ...
2
votes
1answer
173 views

ActivityInstrumentationTestCase2 issues - test hangs because of invalidate() call in the code I'm writing a test for

I'm implementing a test for some code I've written which I have distilled down into a sample project pasted below. The problem I am having is that the test hangs the test runner and none of the test ...

1 2 3 4 5