The process of inserting extra diagnostic code during compilation of a given source code.
0
votes
0answers
74 views
C# Instrumentation
What would be the easiest way to do instrumentation of C# code? By instrumentation I mean inserting my own pieces of the code to gather some dynamic information during the execution.
For example ...
0
votes
1answer
55 views
What is Pc Materialization?
I am working with a tool called for binary instrumentation called Intel Pin. However I encountered this strange terminology while I was examining part of the examples that Pin comes with. Here is the ...
0
votes
1answer
23 views
java.lang.reflect.InvocationTargetException gets thrown when bytecode instrumentation is finished with asm.
I wanted to instrument some methods/classes in Java. For that purpose I wrote an Java agent that instruments only a few classes that I choose.
I use the following code to get the loaded classes and ...
-1
votes
1answer
44 views
Detecting dynamically loaded classes in a java program
I am using soot to instrument classes of an application. But I've found to way to instrument classes dynamically with it. Soot only detect static links which would cause failures with programs with ...
-2
votes
0answers
16 views
app named A, the Tested app is FaceBook ,A start FaceBook and test it Automatic [closed]
the requirement is:
i create a app,named A,it is used to run FaceBook app Automatic,Such as,To say hello to a stranger in the vicinity Automatic.
there is a button on A,and click it to start ...
0
votes
0answers
12 views
How to instantiate Instrumentation in normal Android app instead of in test projects?
As you know, android.app.Instrumentation class can be used in test projects for Android development.
Besides being used in test projects, is it possible to use the Instrumentation in normal Android ...
0
votes
0answers
15 views
How to use startInstrumentation() with socket permission enabled?
[The background]
I have been able to use the instrumentation in Android test projects. But now, I am trying to use instrumentation in normal Android app in order to do some automatic GUI control. For ...
3
votes
1answer
58 views
Parameterized instrumentation tests on Android
I'm trying to write a batched instrumentation test (using ActivityInstrumentationTestCase2) for a particular Activity where I change the intent each time the test runs. I can do this with a single ...
0
votes
0answers
31 views
How to implement Instrumentation sendPointerSync inside Activity oncreate()?
Inside my Activity, I want send few key event. However, I do not know why it throw SecurityExcecption.
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
...
2
votes
2answers
70 views
Java Bytecode instrumentation with ASM: VerifyError on code injection at INVOKESPECIAL instructions
I'm quite new in bytecode injection. Until now, I was able to get everything what I wanted by exhaustive research and painful trial and error :-)
But I seem to have reached my limits with the ...
1
vote
1answer
35 views
Java Instrumentation/JavassistHelper example code does not work
I am trying to build and run my own version of the example in this tutorial
I made an eclipse project that runs the HelloWorld class with instrumentation. If I use the loggeragent.jar I downloaded ...
1
vote
1answer
49 views
Basic block logging in Java using javaagents
My goal is to instrument a small amount of code at the beginning of every basic block of some Java bytecode. The purpose is to record the execution path through basic blocks. Currently, I am using ...
1
vote
0answers
43 views
How to set Wifi state using WifiManager in class derived from ActivityInstrumentationTestCase2?
I have automated UI android instrumentation tests that need to turn on/off Wifi for specific test cases. I thought this would be a piece of cake but I am having some trouble. I need to have the ...
0
votes
1answer
62 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(). ...
-1
votes
0answers
12 views
PAPI with Pin: instrumentation granularity
I am trying to get execution cycles, memory reads & writes, cache hits and misses through papi library by instrumentation through pin. At what granularity should i instrument in pin so that the ...
0
votes
0answers
20 views
data recognition using python [duplicate]
I Have been given a assignment where i need to instrument a given application and generate a trace file and later on from the trace file a sequence diagram needs to be generated. The application is ...
0
votes
1answer
39 views
to get start and end time of application hosted in tomcat using javaagent
I have written a javaagent application to get the execution time of a java application and it works fine. i tried to use this application to get the execution time of a application hosted in tomcat ...
1
vote
0answers
49 views
Error using instrumentation class with -javaagent on play framework 2.1.0-java
I've been using an instrumentation class "SizeOfAgent" to calculate memory requirements on my play 2.0.4 environment.
In order to do that I have put "-javaagent:lib\sizeof.jar" on the java command ...
0
votes
1answer
33 views
VSIntr - deinstrument file
my use case is: I want to instrument a dll-file for code coverage analysis using the command line tool VSInstr from Visual Studio 2010, run test cases, deinstrument the file, change to another ...
0
votes
1answer
35 views
Simulating Menu Press action not working on all the Android
As in the later Androids, the menu button has been removed, I call the following code to open menu items when some one taps once in the UI.
public void singleTapOnImage(View view) {
...
0
votes
1answer
40 views
Android Instrumentation testing
I am writing a test case for my android activity. The activity has two textboxes and a button. When the button is pressed i make a call to a web service and the application responds accordingly. Now ...
1
vote
1answer
31 views
Adding jmp instructions
I want to add harmless unconditional branches after every jmp-like instruction in the binary to ensure that the fall through branch can be observed when we keep a record of branch instructions ...
2
votes
0answers
72 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 ...
0
votes
0answers
18 views
Android instrumentation assert failing
My activity contain a textview and a password. i have written a test case to check the validation for this activity.
mInstrumentation.waitForIdleSync();
final EditText ...
1
vote
1answer
31 views
Android Instrumentation - Assert fails
I have a small activity that contains a textview and a password. I have written a small text to test this activity. But the assert on the last line is failing. Could someone please tell me why ?
...
1
vote
1answer
45 views
Javaassist source error while instrumenting a method
I am trying to instrument a method in one of my entities (com.xxx.entity.Order):
private String getLookupMethodString() {
return new StringBuilder(
"public java.lang.String ...
0
votes
1answer
26 views
Instrument does not change in Jfugue
I am running the Jfugue test program, here is the code:
package ge;
import org.jfugue.*;
public class GE {
/**
* @param args the command line arguments
*/
public static void ...
3
votes
1answer
102 views
Java Bytecode Instrumentation: NullPointerException in reflective call to defineClass
Intent:
I'm using the java.lang.instrument package to create some instrumentation for Java programs. The idea is that I use bytecode manipulation via this system in order to add method calls at the ...
0
votes
2answers
132 views
Hibernate instrumentation transform failure: cannot find class (HHH000373)
I'm attempting to enable Hibernate instrumentation for the entities in a Maven project. Instrumentation seems to work normally on entities with only fields of standard types defined by the Java API ...
2
votes
2answers
81 views
Extracting and Instrumenting elf files for powerPC on windows platform
I am trying to extract information like function name and its parameters from elf file, with the goal to perform robustness testing by changing the parameter values for functions, I am working on ...
0
votes
1answer
30 views
Android instrumentation testcases
In my instrumentation tests i have a function called
@SmallTest
public void testPreconditions() {
startActivity(mStartIntent, null, null);
...
0
votes
0answers
43 views
Visual Studio Profiler (Instrumentation Profiling- VS.Net 2010)
I have developed a programme using VC++ Visual Studio.net 2010.
I want to test what functions take the most time to execute.
When I tried to profile it using Visual Studio – Instrumentation, the ...
0
votes
1answer
42 views
Android Instrumentation Unit testing an adapter that requires a reference to an activity
I have inherited some messy code that I am trying to clean up. The first thing I'm starting with is writing some unit tests on the module's that I am planning on keeping for a while. Unfortunately, ...
0
votes
2answers
81 views
Android instrumentation ListView click
I have a ListView in my activity. When i click on an item in the ListView, i call an intent and start a new Activity. I have set up my test cases, and obtained a reference for my ListView. How do i ...
2
votes
2answers
95 views
Difference between ActivityUnitTestCase and ActivityInstrumentationTestCase2
I am new to Android Instrumentation cases. i have been looking at the API samples and see that sometimes we use ActivityUnitTestCase and the ActivityInstrumentationTestCase2. What is the difference ...
0
votes
0answers
32 views
How to use debugger to generate a trace file?
My work is to instrument a python application such that it generates a trace file consisting of the necessary dynamic information. I am using a python script to instrument the source code. I have ...
1
vote
1answer
42 views
Android Instrumentation testing an AsyncTask
I am new to instrumentation testing in Android. Can someone show me how i can start an async task and wait for the result to be computed ? Many of my network calls rely on AsynTasks and i need to know ...
0
votes
1answer
117 views
Android Instrumentation Launch Activity
I have a simple activity that contains a button. When i press the button a second activity runs. Now I am new to Android Instrumentation Testing. So far this is what I have written
public class ...
0
votes
0answers
97 views
Android maven instrumentation tests failing
I have been recently trying my hand at using Android Instrumentation tests. So the main application has the following structure
<?xml version="1.0" encoding="UTF-8"?>
<project ...
0
votes
0answers
8 views
Is there any instrumentation framework that can attach and detach on the thread granularity during the runtime?
I want to dynamically control the thread to be attached and detached with instrumentation code. I don't know if there is any framework to support this functionality. I know a little about Pin, which ...
1
vote
0answers
81 views
ASP.NET Confusing Performance Counters
The answer to a question on the TechNet forums leaves me confused.
http://social.technet.microsoft.com/Forums/en-US/perfmon/thread/6cb7ebad-7735-4e2b-b48f-a82df664e2e0
Clint says:
ASP.NET ...
0
votes
0answers
50 views
clang on OSX: -finstrument-functions link errors
I'm trying to use __cyg_profile_func_* with -finstrument-functions to do specific checks before and after functions run (eg, to check for Mach port leaks and such). This is on OS X.
The code is ...
2
votes
1answer
39 views
Instrumantation causes corruption of constant pool
I have a method A.passLong(Long) that receives a long as a parameter. I instrument class B, and add an invocation of that method, and pass a long constant.
When I debug the invoked method ...
0
votes
0answers
37 views
How to log/instrument in performance critical web service?
I'm working on a server push service, kind of like pusher/pubnub. The most critical part that handles the client polling is currently using Node.js and Redis, which is working just fine, except for ...
0
votes
1answer
27 views
Emma does not recognize [ctl] command in Java7
I am using the latest version of Emma i.e. 2.0.5312 and Java 7.
If I run the following command to get the coverage.ec on the fly, I get an error.
java emma ctl -connect localhost:47653 -command ...
3
votes
2answers
95 views
Programmatically tell how much memory my VB6 app is using?
I have a program, written in VB6, and I'd like it to be able to know how much memory it itself is using.
Googling around a bit has only led me to the "GlobalMemoryStatusEx" Windows API function, ...
0
votes
2answers
112 views
How to pass an argument to an AndroidTestCase?
I've implemented an Instrumentation and an AndroidTestCase.
For my tests I need to connect to an external WIFI device. I want the testers to be able to specify an SSID for the test to use.
Giving ...
0
votes
0answers
32 views
Fragment state loss error
I am writing Instrumentation test cases for a particular implementation involving fragments.
I am using a list fragment and trying to click on the list item as a part of my
Instrumentation test ...
0
votes
1answer
315 views
Authorize Android Instrumentation Test for Root Access on Emulator
I have developed an Android app that requires root access, and it works fine. I am trying to test the app using instrumentation tests with ActivityInstrumentationTestCase2 and cover the parts of the ...
0
votes
1answer
58 views
Robotium: Shall I always run my tests with screen turned on?
Didn't find it in documentation, but shall I always run my tests on device which is turned on? If I run them with a screen turned off I got different results.


