Questions tagged [tcm]

Tcm is a command-line utility that helps you create and run automated test cases created with Microsoft Test Manager

Tcm.exe is a command-line utility that lets you perform the following tasks:

  • Import automated tests into a test plan
  • Run tests that are part of a test plan from the command line
  • View a list of test items and their corresponding IDs to use when you import tests or run tests
20 questions
3
votes
2 answers

MTM : Is there a way to find test run completion status using command line utility tcm.exe

I use MTM (Microsoft test manager) for running my automated test cases. I schedule test runs using tcm /create command (trigerred from a powershell script) and once the test run is completed I need to copy the trx (result) file on my local machine.…
Ashish Bajpai
  • 179
  • 1
  • 4
  • 10
2
votes
2 answers

Is it possible to clone a test suite into another TFS server?

tcm suites can clone suites into different team projects within a TFS server. I want to clone an entire suite from our test TFS server to the prod TFS server. This page doesn't say anything about cloning between servers. Is there a way to do it?…
hxin
  • 938
  • 2
  • 12
  • 25
2
votes
0 answers

Publish result for multiple test suites

I need to publish the result using from .trx file using tcm command I am able to publish using following command: tcm run /publish /suiteid:1350 /configid:11 /collection:http://tfs2010 /teamproject:DreamProject /resultsfile:"C:\publish.trx"…
Kartik
  • 97
  • 1
  • 8
2
votes
2 answers

How to run test cases from a Testsuite inside a Testplan through command line

"C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\TCM.exe" run /create "/title:Overnight Build Run" /planid:8 /collection:http://hahaha:8080/tfs/DevelopmentCollection /teamproject:SQL"/querytext:SELECT * FROM TestSuite WHERE…
Shah
  • 39
  • 5
1
vote
0 answers

Using Release Manager to kick off tests in MTM.

I am having an issue with kicking off test cases in Microsoft Test Manager from a script kicked off in Microsoft Release Manager. I can duplicate the issue when just running this command from powershell or command line. Here is the…
Chad
  • 11
  • 2
1
vote
1 answer

Unable to find the project path for mstest.exe/tcm.exe

I tried to push the test result (*.trx) to MTM by command line. I used msttest /publish or tcm run /publish. With both I can't get the correct project path, anyone know how to find the…
Felix T
  • 11
  • 1
1
vote
1 answer

how could stack on TCM reduce processor performance

I'm measuring ARM cortex R5f processor performance by running coremark benchmark using different scenarios. one scenario is to set the STACK on ATCM memory. when compiling without inline flag, STACK on TCM get better results. and when compiling with…
bouqbouq
  • 973
  • 2
  • 14
  • 34
1
vote
1 answer

How to run specific automation tests from testsuite using tcm.exe?

I have designed Coded UI tests in Visual Studio 2012. I have associated them with manual tests from Test Manager. How to run only automation tests with priority = 1 from some test suite? How to run only testcases which were marked failed by bugs…
user2279757
  • 35
  • 1
  • 7
1
vote
1 answer

Work item 0 is invalid and can't be saved

I am trying to import automated test cases to Microsoft test manager (Using TCM.exe) I have done this before but when I try this now it give me this error: work item 0 is invalid and can't be saved. Exception: 'F237124 work item is not ready to…
1
vote
1 answer

A test run must be created with at least one test case

Attempting to automate a test run via the command-line Microsoft Test Manager utility, tcm.exe. I'm using the following command: tcm run /create /title:"Automated UI Tests" /planid:27 /suiteid:721 /configid:10 /settingsname:"UI Test Settings…
Ciaran Gallagher
  • 3,895
  • 9
  • 53
  • 97
0
votes
2 answers

What does TCM connection with Icache in this RISCV version?

In the middle of this page (https://github.com/ultraembedded/riscv), there is a block diagram about the core, I really do not know what is TCM doing in the same block with the Icache ? Is it an optional thing to be inside the CPU ?
Neom5
  • 11
  • 2
0
votes
0 answers

TCM Memory - Functions and variables

I'm working on Microchip Cortex M7 microcontrollers. I want to use the TCM for some of my functions. I also use global variables. I was wondering: What is the impact if i put only the functions in TCM? Do i need to put the fucntions AND variables…
0
votes
1 answer

Same TCMs with different sampling event

I wrote TCM for some calculation on AXI interfaces. TCM body is completely same for each interface but sampling event is different. Is it possible to create one TCM and run it multiple times with different sampling events (clocks)?
0
votes
1 answer

Tcm is finding tests, but they all fail

Been scratching my head for a while with this and I thought I would ask here. I am trying to run automated tests with tcm via command prompt. I have set up and configured a test controller and agent. Tcm is recognizing all the tests from tfs when I…
R.Johnston
  • 13
  • 3
0
votes
1 answer

reference field for test case outcome in vso rest api

We have test cases in VSTS under our project. We are using rest Api to get test case details and trying to update the outcome of test case as pass or fail based on some condition but not able to find the reference field for the outcome. Below is my…
1
2