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

learn more… | top users | synonyms

0
votes
1answer
64 views

Robotium: How to update prefs before Activity is started?

I have several test methods in my class. For one of my tests I need to update application preferences before test is started, i.e. before the Activity under a test is started. I'm using Robotium lib ...
2
votes
1answer
83 views

Bytecode Profiling Tools for understanding JVM languages

I'm experimenting (with some friends) with JVM languages, such as Clojure and Scala. We recently found a functional solution to an algorithm that performed 30 times faster in Scala than in Java. With ...
0
votes
0answers
49 views

inject simultaneous keyevents

Is there a way to inject simultaneous keyevents under Android? I'm aware of android.app.Instrumentation.sendKeyDownUpSync for single keyevent, but would like something to simulate simultaneous ...
5
votes
2answers
103 views

Instrumenting Array via java.lang.Object

I am currently working on a platform which makes heavy use of dynamic byte code modification routines via the ASM library. I have been able to successfully instrument all required system classes apart ...
0
votes
0answers
59 views

Unit test no longer possible in VS2012

I set my environment for instrumentation by using the VSPerfCLREnv tool. Since then I am unable to run tests - all that happens is that the IDE keeps loading symbols repeatedly.I tried to neutralize ...
0
votes
2answers
131 views

How can a GCC instrumented executable be faster than the non-instrumented?

I'm benchmarking the overhead of GCC Profile-Guided Optimization on the SPEC benchmarks. I have some weird results with some benchmarks. Indeed, two of my benchmarks are running faster when ...
3
votes
1answer
74 views

How can this instrumentation be done

I have different Java applications running on my system and want to instrument classes from one of these applications While trying to do this using dynamically loaded Java agent I found that we can ...
0
votes
0answers
147 views

Android instrumentation and Fragment onResume

I am trying to develop unit tests for an Activity that contains a Fragment. One of my tests involves validating the Activity's behavior across a pause/resume cycle. Using get instrumentation provided ...
1
vote
0answers
56 views

java instrumentation threading model

I am curious about how the the java instrumentation process works in the context of multiple threads; more specifically if the main thread of an application submits a ClassTransformer to the JVM via: ...
0
votes
1answer
58 views

Glassfish javaagent instrumented class experiences NoClassDefError

I have Oracle GlassFish 3.1.2.2 (build 5) server plugged with my own javaagent. The javaagent instruments specific classes(say servlets) by injecting a piece of bytecode which referes to classes ...
1
vote
0answers
32 views

Agent loading fine but instrumentation not occuring

In order to load and attach my agent to a process the following statement vm.loadAgent("pathToAgent",""); executes properly as no exception is thrown. But the class files responsible for ...
1
vote
2answers
388 views

How to start Instrumentation project programmatically using Android Intent?

one way to start testcase is, adb shell am instrument -w com.google.vishal.test/android.test.InstrumentationTestRunner i want to start this using Android code (with intent) for example, adb ...
4
votes
2answers
92 views

Error while using Attach Api

While using attach API in Eclipse error is thrown in console. In order to use attach API I went to installed JRE in eclipse and then using edit option included the tools.jar in the external jars ...
3
votes
0answers
295 views

android.util.AndroidException: INSTRUMENTATION_FAILED:

I have a simple android app and I am testing it using my phone. So, there are two ways to do that : Using eclipse Using CLI Problem: When I run unit test case using Eclipse, it installs app on ...
0
votes
1answer
89 views

how to receive arguments in activity extends with ActivityInstrumentationTestCase2

Command : adb shell am instrument -e class com.vishal.nirma.test.MyActivity#MyFunction com.vishal.nirma.test/android.test.InstrumentationTestRunner -e myvar myvalue Now, protected void setUp() ...
5
votes
2answers
112 views

Java: What causes the performance increase when repeatedly calling a function?

I was doing some performance testing regarding object allocation, when I came across a weird result. I have the following java code: public static long TestMethod(){ int len = 10000000; ...
1
vote
2answers
98 views

ASM - Intercepting field access made outside Method

I am currently using ASM to intercept all attempts to mutate field values in a target application this is working as expected as ASM allows you to prepend or append instructions to method or ...
0
votes
0answers
61 views

Instrumentation retransformation doesn't appear to be working

I'm just experimenting with Java Instrumentation because it's very interesting and I'd like to know more about it. I'm using it in conjunction with the javassist library to make bytecode manipulation ...
0
votes
1answer
121 views

Retransform native methods in Java Instrumentation Agent library

I am trying to write a Java agent library that is loaded dynamically via attach api to retransform some methods (those that appear in stack traces of certain threads) for recording method entry/exit. ...
3
votes
1answer
157 views

Intel pin: Instrumentate running process

I created a simple pin tool that dumps any win32 CreateFileW calls. It works fine, but when i try to attach it to an already running process, the process simply terminates. Tried with several ...
2
votes
3answers
1k views

Android Testing: Instrumentation run failed due to 'java.lang.ClassNotFoundException'

I have 3 test classes for a particular package from my main application. My first test class is running just fine, the other 2 aren't. When I try to run those 2 tests, I get the following error: ...
1
vote
0answers
170 views

Unit Testing DialogFragments

I use a custom layout for my DialogFragment which I launch like this: someDialog.show(getFragmentManager(), "dialog_tag"); The Dialog has two text fields, a "Save" and "Cancel" button and when the ...
1
vote
1answer
175 views

Robotium - installing the target app as part of the build

I'm trying to run a Robotium testing suite on a demo application, but the android maven plugin fails at mvn install after pushing the test application to the device, because it can't find the target ...
0
votes
0answers
39 views

How can I get the machine code of an instruction in my pintool?

I write my pintool in VS2008, and my pin version is 2.12-53271. With the api function INS_Disassemble(ins) I can get the assemble string of the ins. But when I record too much, the space just tool ...
0
votes
1answer
207 views

Instrument Android App with startInstrumentation

I want to instrument my App with the Instrumentation Interface from inside the tested app. I have a custom activity that every of my activities extend. In that I want to start the instrumentation to ...
4
votes
1answer
217 views

determine size of object: best way to use instrumentation in scala/sbt

According to this question, the standard way to determine the memory size of an object in Java is by using java.lang.instrumentation. After to some research, it looks like there is no Scala specific ...
3
votes
1answer
89 views

Record instantiation of java.lang.Throwable transparently

I want to implement an automatic exception logging service which collects all exceptions/errors that are thrown all over an application. The most elegant way would be to tap into either "throw" or the ...
0
votes
1answer
253 views

AddressSanitizer Crash on GCC 4.8

I've just tried out GCC 4.8's new exciting feature AddressSanitizer. The program #include <iostream> int main(int argc, const char * argv[], const char * envp[]) { int *x = nullptr; ...
0
votes
2answers
101 views

Am I getting the wrong ebp using instrumentation routines (pin), or am I missing something here?

So here's the deal. I am working on a debugger using a pin tool and the dwarf info from the process that I am attaching to. Pin is a framework that lets you create instrumentation tools for processes ...
2
votes
2answers
264 views

Android instrumentation test involving system apps

I must be missing something obvious here: I'm running an instrumentation test case on a device, also with the help of Robotium. At some point my app under test causes the default e-mail compose ...
1
vote
1answer
128 views

In ELF or DWARF, how can I get .PLT section values? — Trying to get the address of a function on where an instrumentation tool is in

I am working in obtaining all the data of a program using its ELF and DWARF info and by hooking a pin tool to a process that is currently running -- It is kind of a debugger using a Pin tool. For ...
0
votes
1answer
99 views

How to avoid the VerifyError: “Expecting to find unitialized object on stack” for objects already initialized

I am developing an instrumentation engine with ASM and I need to intercept the invocation of methods, which receive parameters of array type. For that purpose I implemented a MethodVisitor and in its ...
0
votes
0answers
142 views

Trying to print the registers' values from the stack using a pin tool

I am trying to print out the stack in different routines using a pin tool. I am able to get all of the routines but I am a little confused on how to get the addresses stored in the registers in the ...
1
vote
1answer
953 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 ...
4
votes
1answer
612 views

Spring @Autowired fails in case of Cobertura instrumented class

Question Cobertura instrumentation is breaking springs autowiring in a specific case. Does anyone know how to resolve this? Scenario I am running MVN 3.0.4 with the cobertura-maven-plugin version ...
0
votes
0answers
74 views

Interaction of javassist and java.lang.instrument.Instrumentation.appendToBootstrapClassLoaderSearch

Inside "public static void premain(String agentArgs, Instrumentation inst)", I invoked "appendToBootstrapClassLoaderSearch(myJar)" to add myJar into the search path of the bootstrap classloader. Java ...
2
votes
2answers
576 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 ...
1
vote
2answers
539 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 ...
0
votes
1answer
238 views

Add multiple exclusion filters to OpenCover

I know how I can add 1 exclusion filter but, what if I want to exclude multiple projects at one? Do I repeat the "-" statement? or is it comma separated? Particularly, I'm trying to exclude Tests and ...
1
vote
1answer
206 views

Testing SQLiteOpenHelper subclass with JUnit

I am writing JUnit tests for my Android app. I have read through the Android developer resources (testing fundamentals, Spinner example test, etc.). Now I want to test my SQLiteOpenHelper subclass ...
1
vote
0answers
71 views

Catching uninitialized/unreset variables in GDB

Android project with a native component. I'm using a third party library where I suspect there's an bug with uninitialized or unreset variable. The same sequence of calls (should be equivalent ...
3
votes
1answer
207 views

Monitor Object Creation using ASM in Java

I am using ASM to monitor Object creation in Java. Currently, I take the call to init as the indicator of the creation of a new object and instrument a program from invoke XXX.init to dup; ...
0
votes
1answer
214 views

Java. Restrictions on class redefinition

Java Platform SE 5 API specification for method Instrumentation.redefineClasses(ClassDefinition[]) tells: The redefinition may change method bodies, the constant pool and attributes. The ...
1
vote
3answers
214 views

accessing contents of a void pointer holding a C++ object in C

I'm doing binary instrumentation with DynamoRIO using a C client on a C++ program although you probably don't need to know about DynamoRIO to answer my question. Currently I'm wrapping a function ...
1
vote
0answers
108 views

ActivityMonitor gets hit but getLastActivity returns null

I have a problem with one of the test cases in my test suite. What I'm trying to do is simply to click on a button and wait for a new activity to launch. ActivityMonitor monitor = ...
1
vote
1answer
168 views

Java - ClassFileTransformer.transform(…) concurrect invocation for the same classLoader&className pair

J2SE 5.0 specification for method ClassFileTransformer.transform(ClassLoader classLoader, String className, Class classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer) tells: ...
3
votes
1answer
96 views

Instrumentation not working for methods invoked through reflection [closed]

I am tracing the execution of Java applications to perform dynamic analysis on the execution traces. Everything is fine but when a method is called through reflection. I can see the invocation of ...
0
votes
0answers
13 views

Visual Studio instrument function call [duplicate]

Possible Duplicate: Logging/monitoring all function calls from an application G++ has the wonderful featurea of -finstrument-functions (link) and this gives a lot of help for debugging an ...
0
votes
0answers
21 views

How to use createInvoke()?

How do I use createInvoke() for the following method call? I'm instrumenting a class. currentThread().getStackTrace()[1].getLineNumber()
0
votes
3answers
462 views

Why does my robotium test case does not start immediately after launching the activity?

I have build a Robotium test case for my application. Everything works good except from the fact that i need to manually interact with my app to get the test start running. Meaning i need to go to ...

1 2 3 4 5 8