sbsv2/raptor/test/smoke_suite/commandline.py
branchwip
changeset 5 593a8820b912
child 170 d1af983e283d
equal deleted inserted replaced
3:e1eecf4d390d 5:593a8820b912
       
     1 # General commandline option handling tests which aren't appropriate as unit tests.
       
     2 
       
     3 from raptor_tests import SmokeTest
       
     4 
       
     5 def run():
       
     6 	t = SmokeTest()
       
     7 	t.id = "91a"
       
     8 	t.name = "commandline_nodefaults"
       
     9 	t.description = """Test that raptor complains if you run it without specifying any components and there is no default bld.inf or system definition in the current directory."""
       
    10 	t.usebash = True
       
    11 			
       
    12 	t.command = """
       
    13 		TMPDIR="build/commandline_testdefaults";
       
    14 		cd $(EPOCROOT)/epoc32 && rm -rf "$TMPDIR" 2>/dev/null; mkdir -p "$TMPDIR" && cd "$TMPDIR" &&
       
    15 		sbs ${SBSLOGFILE} -n ; rm -rf "$TMPDIR"
       
    16 m	""" 
       
    17 		
       
    18 	t.mustmatch = [".*warning: No default bld.inf or system definition.*found.* "]
       
    19 	t.warnings = 1
       
    20 	t.result = t.run()
       
    21 	return t