Sonic Superfly
Sonic Superfly

Reputation: 103

Windows Virtual Test Environments - Hyper-V based

im doing automated software testing with hyper-v, tfs and so on. since our software is supposed to support every ms os since xp sp3 there is a lot of different os versions to run the tests on.

my hyper-v environment is completely setup and running fine. my question is as follows.

os like windows 7 have so many different versions (home, premium, professional, ultimate) and both 32 and 64 bit editions. does it make sense to have a vm for each version up and running the tests or would it be just fine to test against the highest edition (ultimate, 32 and 64 bit) and then assume that the test would definately also work on the eg. professional edition as well?

Upvotes: 0

Views: 167

Answers (1)

eFloh
eFloh

Reputation: 2158

I second Filburt: Select a reasonable testing scenario (e.g. only the least and biggest editions), but DO test all bitness-variants, at least mix you platform variants bitness in order to keep the numer of machines low, e.g.

  • Win7 Home x32
  • Win7 Ultimate x32
  • Win7 Business Pro x64
  • ...Vista & co...
  • WinXP Home x32
  • WinXPPro x64

Upvotes: 1

Related Questions