checktools/checktools.py
author Dario Sestito <darios@symbian.org>
Fri, 03 Sep 2010 11:18:29 +0100
changeset 319 3c4e66eaef4a
parent 271 b20b2eae00e9
permissions -rw-r--r--
Add one more debug line and a possible fix for the total releasables number not displayed problem

#!/usr/bin/python
# Copyright (c) 2009 Symbian Foundation.
# All rights reserved.
# This component and the accompanying materials are made available
# under the terms of the License "Eclipse Public License v1.0"
# which accompanies this distribution, and is available
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
#
# Initial Contributors:
# Symbian Foundation - Initial contribution
# 
# Description:
# Script to download and unpack a Symbian PDK - assumes "7z" installed to unzip the files

import os
import re

def test_command(label, command, output):
  print label,
  out = os.popen(command)
  for line in out.readlines():
    if re.match(output, line) :
      out.close()
      print '\t\t[OK]'
      return 0
  out.close()
  print '\t\t[MISSING]'
  return 1

print 'Symbian checktools version 0.1'
print 'Checking for existance of needed Symbian tools\n'
error_count = 0
error_count += test_command('7-zip','7z -h', 'Usage:')
error_count += test_command('PERL','perl -h', 'Usage:')
error_count += test_command('Python','python -h', 'usage:')
error_count += test_command('hg','hg -h', 'Mercurial')

print

if error_count > 0:
  print 'ERROR: One or more tools missing'
else:
  print 'All tools OK'