Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
9answers
2k views

Use cases for boxing a value type in C#?

There are cases when an instance of a value type needs to be treated as an instance of a reference type. For situations like this, a value type instance can be converted into a reference ...
2
votes
3answers
134 views

Possibility of language data type not mapped to shipped .NET Framework?

Does anybody know of a managed programming language implemented on .NET that contains a specialized data type that is not mapped through to the Common Type System/FCL/BCL or one that does not have a ...
2
votes
2answers
5k views

How to build android cts? And how to add and run your test case?

From 2.0 the cts is freely downloadable from android's repository. But there is no documents about it. Does anyone can tell me: how to build cts? Is there a standard procedure? How to run cts? How ...
2
votes
2answers
493 views

CIL,CLS,CTS IN .NET

what is the CIL,CTS,CLS in .net and what is the difference among them?
1
vote
1answer
342 views

Unable to find instrumentation target package: com.android.cts.stub

Running the Android CTS encountering lot of failures due to following error : Unable to find instrumentation target package: com.android.cts.stub What might cause this error and how could i fix it? ...
1
vote
1answer
84 views

How we can skip any Test Cases during CTS Run?

How we can do the following task: During the running time we can skip the any package or case...?
1
vote
1answer
77 views

How we can Find cause of CTS Error?

I Found some CTS Error Which is Given below: Compatibility Test Package: CtsAppTestCases Package Name: android.app.cts.DialogTest Error: -- testContextMenu fail ...
1
vote
1answer
202 views

The Composition Time(CTS) when wrapping H.264 NALU's

The h.264 hardware compression card procedures NALU's from captured video. I am trying to wrap the NALU's into FLV and I almost succeed. I don't know how to fill the Composition Time field in FLV ...
1
vote
0answers
359 views

Android CTS build conflict with SDK build

I meet a problem that in the Android source tree, every time I build some thing, it will be force clean, thus the build result before will be lost. Such as: 1, First I build SDK. #make sdk 2, ...
1
vote
2answers
2k views

Android CTS is showing ShellCommandUnresponsiveException on emulator

I am running Android CTS Android Test Plan on an emulator running on Android 2.2. But most of the test cases are showing timeout and the error shows ...
0
votes
0answers
26 views

How to launch CTS using command line on Windows?

For Android 2.3, I use this command line to enter CTS console: java -Xmx512M -cp ...
0
votes
0answers
57 views

CTS cannot launch Custom TestSuite

I have implemented a very high number of test cases and I would like to avoid running them all at once. I created my own TestSuite in order to select only a bunch of them: package com.mytests; ...
0
votes
0answers
42 views

how to choose the correct version of android CTS

i work for a phone vendor, our phone was based on Android 2.3.4_r1 GRJ22 , but when i ran the CTS , the OsVersionTest fails for the reason of not supporting 2.3.4 in test case. how to choose the ...
0
votes
0answers
51 views

Cts test case execution control

On some given condition I want to execute a particular test case. If the condition is false then that test case should not be executed and test result should be shown as "not executed" not as "pass" ...
0
votes
1answer
387 views

Not able to run CTS on Windows

when I run: java %JAVA_OPTS% -cp %JARS%(jar_files) com.android.cts.TestHost %CONFIG%(xml path) %* %DDCONFIG% in cmd promt im getting following error, please anybody suggest solution for this error ...
0
votes
1answer
361 views

Regarding CTS Error

How to kill a running CTS instance.Suppose one CTS instance is running on a terminal and if we abruptly close that terminal, that CTS instance will not be closed and when we try to start CTS again ...
0
votes
1answer
2k views

CTS_ERROR >>> Failed to execute shell command am instrument

Using the Android 2.2, API-8, SDK-r7 along with CTS-2.2_r4 suite. Updated the SDK_ROOT environment variable with SDK_r7 tools in “android-cts/tools/startcts” script and the “SDK_ROOT/tools” also ...