From ed99678257db99fdc85a002e00ca8b4bc6125875 Mon Sep 17 00:00:00 2001 From: rzaitov Date: Thu, 31 Oct 2013 14:29:11 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BB=20=D1=80?= =?UTF-8?q?=D1=83=D1=87=D0=BD=D0=BE=D0=B9=20=D1=82=D0=B5=D1=81=D1=82=20?= =?UTF-8?q?=D0=B4=D0=BB=D1=8F=20=D0=BF=D1=80=D0=BE=D0=B2=D0=B5=D1=80=D0=BA?= =?UTF-8?q?=D0=B8=20=D0=BE=D1=87=D0=B8=D1=81=D0=BA=D0=B8=20=D1=80=D0=B5?= =?UTF-8?q?=D1=88=D0=B5=D0=BD=D0=B8=D1=8F.=20=D0=A1=D0=B4=D0=B5=D0=BB?= =?UTF-8?q?=D0=B0=D0=BB=D0=BF=D1=80=D0=BE=D0=B2=D0=B5=D1=80=D0=BA=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/ManualTests/clean_test.py | 9 +++++++++ scripts/run_manual_tests.py | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 scripts/ManualTests/clean_test.py diff --git a/scripts/ManualTests/clean_test.py b/scripts/ManualTests/clean_test.py new file mode 100644 index 0000000..3af255a --- /dev/null +++ b/scripts/ManualTests/clean_test.py @@ -0,0 +1,9 @@ +from CommandBuilders.CleanBuildCommandBuilder import CleanBuildCommandBuilder + +buildUtilPath = '/Applications/Xamarin\ Studio.app/Contents/MacOS/mdtool' +line = "clean 'BuildSample/BuildSample.sln' for 'Release|iPhone'" + +builder = CleanBuildCommandBuilder(buildUtilPath, 'clean') + +command = builder.getCommandFor(line) +command.execute() \ No newline at end of file diff --git a/scripts/run_manual_tests.py b/scripts/run_manual_tests.py index 077bfeb..33326b7 100644 --- a/scripts/run_manual_tests.py +++ b/scripts/run_manual_tests.py @@ -16,5 +16,6 @@ os.chdir(baseDir) #import ManualTests.run_sh_command #import ManualTests.make_dirs #import ManualTests.remove_project +#import ManualTests.infoplist_test -import ManualTests.infoplist_test \ No newline at end of file +import ManualTests.clean_test \ No newline at end of file