The process of inserting extra diagnostic code during compilation of a given source code.

learn more… | top users | synonyms

6
votes
3answers
469 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
1answer
2k 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 ...
10
votes
3answers
2k 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 ...
12
votes
4answers
4k 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 ...
15
votes
4answers
5k 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 ...
6
votes
3answers
4k 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 ...
2
votes
1answer
4k views

How can I deliver parameters to a test function, that launched using adb shell am Instrumentation command

I am developing in Android, I am using instrumentation to test Phone application. Instrumentation is Android env to test applications. For that I use am command with name of test case. I run adb, ...
4
votes
5answers
5k views

How to get started with WCF Performance profiling

I'm trying to figure out how to profile a WCF service so I can identify any bottlenecks. I have found a bit of information on line, but nothing that assumes no prior knowlege which is where I'm at. ...
3
votes
1answer
2k views

How to discover table properties from SQLAlchemy mapped object

I have a class mapped with a table, in my case in a declarative way, and I want to "discover" table properties, columns, names, relations, from this class: engine = create_engine('sqlite:///' + ...
2
votes
2answers
734 views

How to tell gcc to instrument the code with calls to my own function each _line_ of code?

For example, there is the source: void my_special_debugging_function(const char* function_name, const char* file_name, int line_number); void func1() { func3(); func4(); } void foo() { ...
2
votes
4answers
1k views

How to instrument java methods?

I want to write a simple java agent which can print the name of a method called by the java program instrumented. For example, my java program I want to instrument is: public class TestInstr { ...
1
vote
1answer
925 views

Starting another Activity in a JUnit test by simulating a button press

To illustrate my latest problem with writing JUnit tests for my Android app, I wrote a simple example with two activities, StartActivityForResult and ChildActivity. The former contains a TextView (for ...
1
vote
2answers
1k views

Unable to resolve activity for: Intent when instrumentation-testing android activities

I'm getting errors when I'm trying to run insturmentation tests on android. I've written an Activity, called AudioPlayerActivity that lies in the package com.mycompany.mobile.android.gui, and now I'm ...
5
votes
2answers
5k 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 ...
7
votes
2answers
629 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 ...
19
votes
6answers
8k 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 ...
8
votes
2answers
2k 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
7answers
564 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 ...
4
votes
3answers
1k 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
5answers
529 views

Detecting System.setProperty method invocations

I'm facing a conundrum here. One of the applications that I've developed is loading an incorrect implementation of the DocumentBuilderFactory class of JAXP. This behavior was later deduced to be ...
3
votes
4answers
1k views

Instrumentation (diagnostic) library for C++

I'm thinking about adding code to my application that would gather diagnostic information for later examination. Is there any C++ library created for such purpose? What I'm trying to do is similar to ...
8
votes
4answers
3k 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
4answers
986 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 ...
4
votes
2answers
862 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 ...
3
votes
1answer
470 views

Instrumentation test for Android - How to receive new Activity after orientation change?

I'm trying to test, if newly created Activity (after orientation change) is properly reinitialized. The code below shows that activity returned from getActivity() is the one constructed in setUp(), ...
3
votes
1answer
1k views

How to resolve Exception during suite construction?

I have followed the below steps to test my app. I have created Android Project. I have created the debug signature for my sample app and test app(which need to be tested) Place the ...
2
votes
1answer
1k views

How to fix INJECT_EVENT permission exception when sending touches to an ActivityInstrumentationTestCase2 test

Although there are many examples showing that something like this should work, the following code fails. This code lives in a test project that is associated with the real project. public class ...
0
votes
3answers
130 views

Observe running time of a Java code in cmd prompt

I have a java class file in my hand and can simply able to run it from windows cmd to view the output. Only thing I need to observe the running time of this java program depending on different input ...
0
votes
2answers
253 views

How to do Binary instrumentation of syscall brk ? (x86-64 Linux) (maybe valgrind?)

I'd like to instrument syscall brk (and other calls but this in first order, it's most important to me) in given binary (preferably on actual syscall/sysenter level (x86-64 and x86) of making sys_brk ...
0
votes
2answers
3k views

Error in Android --Unable to find instrumentation info for: ComponentInfo

For Example I had an application that will invoke contacts and has to select one of the contact. But its not doing exactly what I want. It is showing me error Unable to find instrumentation info for: ...
0
votes
1answer
356 views

winforms instrumentation . [closed]

What is the best pattern for instrumentation. I have an application and i want to be able to track metrics on everytime a users does a number of functions in the app (brings up a form, views a ...
6
votes
5answers
2k 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 ...
3
votes
2answers
681 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 ...
2
votes
0answers
70 views

Interacting with the controls of a JavaFX application from a foreign language (Prolog) by means of JNI

I would like to interact (as transparently as possible from the Java point of view) with the controls of a JavaFX application from an application in a foreign language (Prolog). Java and Prolog are ...
2
votes
2answers
558 views

Testing onActivityResult()

I have the following Activity: package codeguru.startactivityforresult; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import ...
2
votes
1answer
367 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 ...
1
vote
2answers
513 views

Testing that an Activity returns the expected result

I have the following Activity: package codeguru.startactivityforresult; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import ...
1
vote
1answer
314 views

How to create a jvmti agent to see all the loaded classes, objects and their field details

I want to write a java agent to instrument some applications. I am interested in getting the details of the objects, (i.e. their fields) instantiated by the applications. I would also like to catch ...
1
vote
2answers
292 views

Implementing a selective ClassLoader

I want to instrument the bytecode of some classes on the classpath at loading time. Since these are 3rd party libraries, I know exactly when they are loaded. The problem is that I need to do the ...
1
vote
4answers
1k views

Code Instrumentation on an ASP.NET Web Application

I'm fairly new to .NET development in general. I would like to do some instrumentation on my web application to tune performance, especially in relation to caching. I've written a lot of custom ...
0
votes
1answer
60 views

Javassist's CtMethod.insertAt(line,src) instruments code at the wrong bytecode position

My goal is to insert a little bit of instrumentation code at the beginning of each basic block of code. It seems like a fairly simple task with Javaassist's ControlFlow.Block and CtMethod.insertAt(). ...
0
votes
3answers
397 views

How to “interleave” C/C++ souce with my string (only inside functions at appropriate places)?

For example, there is the source: void func1() { func3(); if(qqq) { func2(); } func4( ); } It should be transformed to: void func1() { MYMACRO func3(); MYMACRO ...