Example #1
0
def testExampleStaticLibAnalysis():
    os.chdir("../../bin")
    # relative to bin dir
    projDir = os.path.normpath("../examples/staticlib-oovaide")
    while os.path.exists(projDir):
        shutil.rmtree(projDir)
        time.sleep(.5)
    os.mkdir(projDir)
    oovaideStrs = "BuildArgsBase|-c\n"   \
        "BuildArgsExtra-Analyze|-x;c++;-std=c++11\n"   \
        "BuildArgsExtra-Debug|-std=c++0x;-O0;-g3\n"   \
        "BuildArgsExtra-Release|-std=c++0x;-O3\n"   \
        "SourceRootDir|C:/Dave/Mine/software/oovaide/svn/trunk/examples/staticlib/\n"   \
        "Tool-CompilerPath-Debug|g++.exe\n"   \
        "Tool-CompilerPath-Release|g++.exe\n"   \
        "Tool-LibPath-Debug|ar.exe\n"   \
        "Tool-LibPath-Release|ar.exe\n"   \
        "Tool-ObjSymbolPath-Debug|nm.exe\n"   \
        "Tool-ObjSymbolPath-Release|nm.exe\n"
    of = open(projDir + "/oovaide.txt", 'w')
    of.write(oovaideStrs)
    of.close()

    compTypes = "Comp-type-BlackSheep|StaticLib\n"    \
        "Comp-type-MainClients|Program\n"     \
        "Components|BlackSheep;MainClients\n"
    ctf = open(projDir + "/oovaide-comptypes.txt", 'w')
    ctf.write(compTypes)
    ctf.close()

    runOovBuilder(projDir, "Debug", "-v")
    if not os.path.exists(projDir + "/" + "out-Debug/MainClients.exe"):
        testSupport.dumpError("Error file doesn't exist")
Example #2
0
def testExampleStaticLibAnalysis():
    os.chdir("../../bin")
    # relative to bin dir
    projDir = os.path.normpath("../examples/staticlib-oovaide")
    while os.path.exists(projDir):
        shutil.rmtree(projDir)
        time.sleep(.5)
    os.mkdir(projDir)
    oovaideStrs = "BuildArgsBase|-c\n"   \
        "BuildArgsExtra-Analyze|-x;c++;-std=c++11\n"   \
        "BuildArgsExtra-Debug|-std=c++0x;-O0;-g3\n"   \
        "BuildArgsExtra-Release|-std=c++0x;-O3\n"   \
        "SourceRootDir|C:/Dave/Mine/software/oovaide/svn/trunk/examples/staticlib/\n"   \
        "Tool-CompilerPath-Debug|g++.exe\n"   \
        "Tool-CompilerPath-Release|g++.exe\n"   \
        "Tool-LibPath-Debug|ar.exe\n"   \
        "Tool-LibPath-Release|ar.exe\n"   \
        "Tool-ObjSymbolPath-Debug|nm.exe\n"   \
        "Tool-ObjSymbolPath-Release|nm.exe\n"
    of = open(projDir + "/oovaide.txt", 'w')
    of.write(oovaideStrs)
    of.close()

    compTypes = "Comp-type-BlackSheep|StaticLib\n"    \
        "Comp-type-MainClients|Program\n"     \
        "Components|BlackSheep;MainClients\n"
    ctf = open(projDir + "/oovaide-comptypes.txt", 'w')
    ctf.write(compTypes)
    ctf.close()

    runOovBuilder(projDir, "Debug", "-v")
    if not os.path.exists(projDir + "/" + "out-Debug/MainClients.exe"):
        testSupport.dumpError("Error file doesn't exist")
Example #3
0
def runCppParser(srcFn):
    if not os.path.exists(outDir):
        os.mkdir(outDir)
    inFn = os.path.normpath(inDir + "/" + srcFn)
    cmd = os.path.normpath("../../bin/oovCppParser.exe ")
    outRedir = os.path.normpath(outDir + "/testCppParserOut.txt")
    os.system(cmd + inFn + " " + inDir + \
              " " + outDir + " -c -x c++ -std=c++11 > " + outRedir)
    if os.path.exists(outDir + "/" + srcFn.replace(".", "_") + "-err.txt"):
        testSupport.dumpError("Error file should not exist")
Example #4
0
def runCppParser(srcFn):
    if not os.path.exists(outDir):
        os.mkdir(outDir)
    inFn = os.path.normpath(inDir + "/" + srcFn)
    cmd = os.path.normpath("../../bin/oovCppParser.exe ")
    outRedir = os.path.normpath(outDir + "/testCppParserOut.txt")
    os.system(cmd + inFn + " " + inDir + \
              " " + outDir + " -c -x c++ -std=c++11 > " + outRedir)
    if os.path.exists(outDir + "/" + srcFn.replace(".", "_") + "-err.txt"):
        testSupport.dumpError("Error file should not exist")
Example #5
0
def verifyRegEx(mainstr, findstr):
    if(not re.findall(findstr, mainstr)):
        testSupport.dumpError("Missing: " + findstr)
Example #6
0
def verifySubString(mainstr, substr):
    if(mainstr.find(substr) == -1):
        testSupport.dumpError("Missing: " + substr)
Example #7
0
def verifyRegEx(mainstr, findstr):
    if (not re.findall(findstr, mainstr)):
        testSupport.dumpError("Missing: " + findstr)
Example #8
0
def verifySubString(mainstr, substr):
    if (mainstr.find(substr) == -1):
        testSupport.dumpError("Missing: " + substr)