summaryrefslogtreecommitdiff
path: root/tests/automated/configure.py
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2010-03-30 13:02:40 +0000
committerBenny Prijono <bennylp@teluu.com>2010-03-30 13:02:40 +0000
commitab7123a90d8016314506ed8e2cd5d08ec9a88c45 (patch)
tree5176624c2975f363b8fe65df5917919ddf1d5921 /tests/automated/configure.py
parentbfce50ca66e811fa21aec4385ce14ea46ce1f84e (diff)
More ticket #1041 (Unit test):
- Symbian testing (plain, APS/Direct, VAS/Direct) - some MMPs need to be modified to support automated configuration - renamed Write to FileWrite command in scenario files - support for Visual Studio 2010 detection in configure script git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3131 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'tests/automated/configure.py')
-rwxr-xr-xtests/automated/configure.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/automated/configure.py b/tests/automated/configure.py
index 167f586b..06a65315 100755
--- a/tests/automated/configure.py
+++ b/tests/automated/configure.py
@@ -66,10 +66,14 @@ class VSVersion:
self.version = "9"
self.release = "2008"
break
- else:
+ elif major=="16":
self.version = "10"
self.release = "2010"
break
+ else:
+ self.version = "11"
+ self.release = "2012"
+ break
proc.wait()
self.vs_version = "vs" + self.version
self.vs_release = "vs" + self.release