Example #1
0
 def run(self, args, env):
     arglist = SDK.runtime() + [self.exe_name] + map(str, args)
     env = env.copy()
     env['LANG'] = 'C'
     mono = subprocess.Popen(arglist, stdout=subprocess.PIPE,
                             stderr=subprocess.PIPE, env=env)
     stdout, stderr = mono.communicate()
     retval = mono.wait()
     return stdout, stderr, retval
Example #2
0
 def run(self, args, env):
     arglist = SDK.runtime() + [self.exe_name] + map(str, args)
     env = env.copy()
     env['LANG'] = 'C'
     mono = subprocess.Popen(arglist,
                             stdout=subprocess.PIPE,
                             stderr=subprocess.PIPE,
                             env=env)
     stdout, stderr = mono.communicate()
     retval = mono.wait()
     return stdout, stderr, retval
Example #3
0
def load_and_cache_assembly(name, outfile):
    tmpfile = udir.join(name)
    arglist = SDK.runtime() + [Query.get(), name, str(tmpfile)]
    retcode = subprocess.call(arglist)
    assert retcode == 0
    mydict = {}
    execfile(str(tmpfile), mydict)
    types = mydict['types']
    f = outfile.open('wb')
    pickle.dump(types, f, pickle.HIGHEST_PROTOCOL)
    f.close()
    return types
Example #4
0
File: gencli.py Project: sota/pypy
    def build_exe(self):        
        if getoption('source'):
            return None

        pypy_dll = get_pypy_dll() # get or recompile pypy.dll
        shutil.copy(pypy_dll, self.tmpdir.strpath)

        ilasm = SDK.ilasm()
        tmpfile = self.tmpfile.strpath
        self.outfile = self.entrypoint.output_filename(tmpfile)
        argv = [tmpfile,'/output:' + self.outfile] + self.entrypoint.ilasm_flags()
        self._exec_helper(ilasm, argv,
                          'ilasm failed to assemble (%s):\n%s\n%s',
                          timeout = 900)
        # Mono's ilasm occasionally deadlocks.  We set a timer to avoid
        # blocking automated test runs forever.


        if getoption('verify'):
            peverify = SDK.peverify()
            self._exec_helper(peverify, [outfile], 'peverify failed to verify (%s):\n%s\n%s')
        return self.outfile
Example #5
0
    def build_exe(self):
        if getoption('source'):
            return None

        pypy_dll = get_pypy_dll()  # get or recompile pypy.dll
        shutil.copy(pypy_dll, self.tmpdir.strpath)

        ilasm = SDK.ilasm()
        tmpfile = self.tmpfile.strpath
        self.outfile = self.entrypoint.output_filename(tmpfile)
        argv = [tmpfile, '/output:' + self.outfile
                ] + self.entrypoint.ilasm_flags()
        self._exec_helper(ilasm,
                          argv,
                          'ilasm failed to assemble (%s):\n%s\n%s',
                          timeout=900)
        # Mono's ilasm occasionally deadlocks.  We set a timer to avoid
        # blocking automated test runs forever.

        if getoption('verify'):
            peverify = SDK.peverify()
            self._exec_helper(peverify, [outfile],
                              'peverify failed to verify (%s):\n%s\n%s')
        return self.outfile
Example #6
0
    def run(self, *args):
        if self._exe is None:
            py.test.skip("Compilation disabled")

        if getoption('norun'):
            py.test.skip("Execution disabled")

        arglist = SDK.runtime() + [self._exe] + map(str, args)
        env = os.environ.copy()
        env['LANG'] = 'C'
        mono = subprocess.Popen(arglist, stdout=subprocess.PIPE,
                                stderr=subprocess.PIPE, env=env)
        stdout, stderr = mono.communicate()
        retval = mono.wait()
        return stdout, stderr, retval
Example #7
0
File: rte.py Project: sota/pypy-old
 def get_COMPILER(cls):
     return SDK.ilasm()
Example #8
0
File: rte.py Project: sota/pypy-old
 def get_COMPILER(cls):
     return SDK.csc()
Example #9
0
File: rte.py Project: sota/pypy
 def get_COMPILER(cls):
     return SDK.ilasm()
Example #10
0
File: rte.py Project: sota/pypy
 def get_COMPILER(cls):
     return SDK.csc()