Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
Remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
decoder committed Apr 2, 2012
1 parent 114649c commit 22c6ee7
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions compileShell.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -216,8 +216,6 @@ def cfgJsBin(archNum, compileType, threadsafe, configure, objdir):
cfgCmdList[counter] = cfgCmdList[counter].replace(os.sep, '\\\\') cfgCmdList[counter] = cfgCmdList[counter].replace(os.sep, '\\\\')
counter = counter + 1 counter = counter + 1


print cfgCmdList
print cfgEnvList
captureStdout(cfgCmdList, ignoreStderr=True, currWorkingDir=objdir, env=cfgEnvList) captureStdout(cfgCmdList, ignoreStderr=True, currWorkingDir=objdir, env=cfgEnvList)


def shellName(archNum, compileType, extraID, vgSupport): def shellName(archNum, compileType, extraID, vgSupport):
Expand Down Expand Up @@ -319,11 +317,6 @@ def makeShell(shellCacheDir, sourceDir, archNum, compileType, valgrindSupport, c
# Run the testcase on the compiled js binary. # Run the testcase on the compiled js binary.
def testBinary(shell, file, flagsRequired, valgSupport, verbose=False, timeout=None): def testBinary(shell, file, flagsRequired, valgSupport, verbose=False, timeout=None):
testBinaryCmd = [shell] + flagsRequired + [file] testBinaryCmd = [shell] + flagsRequired + [file]

#if (timeout != None):
# testBinaryCmd.insert(0, str(timeout));
# testBinaryCmd.insert(0, "timeout");

if valgSupport: if valgSupport:
valgPrefixCmd = [] valgPrefixCmd = []
valgPrefixCmd.append('valgrind') valgPrefixCmd.append('valgrind')
Expand Down

0 comments on commit 22c6ee7

Please sign in to comment.