Home | History | Annotate | Download | only in valgrind

Lines Matching refs:wrapper

269                             help="set --wrapper rather than running Dr. Memory "
405 # Need to create the wrapper before modifying |proc|.
406 wrapper = self.CreateBrowserWrapper(proc, webkit=True)
408 proc.append("--wrapper")
409 proc.append(wrapper)
413 wrapper = self.CreateBrowserWrapper(proc)
414 os.environ["BROWSER_WRAPPER"] = wrapper
415 logging.info('export BROWSER_WRAPPER=' + wrapper)
427 magic wrapper to only valgrind the Chrome browser. Build the wrapper here.
428 Returns the path to the wrapper. It's up to the caller to use the wrapper
432 # Add the PID of the browser wrapper to the logfile names so we can
441 'echo "Started Valgrind wrapper for this test, PID=$$" >&2\n')
454 # wrapper now? browser_tests? What do they do?
474 # If we have browser wrapper, the logfiles are named as
482 # Fast path - no browser wrapper was set.
499 print " Below is the report for valgrind wrapper PID=%d." % ppid
824 help="set --wrapper rather than running valgrind "
965 wrapper = " ".join(["python", wrapper_path] + proc)
966 self.CreateBrowserWrapper(wrapper)
967 logging.info("browser wrapper = " + " ".join(proc))
971 wrapper = wrapper.replace('\\', '/')
972 proc += ["--wrapper", wrapper]
999 # If we have browser wrapper, the per-test logdirs are named as
1014 print " Below is the report for drmemory wrapper PID=%s." % ppid
1191 # TODO(glider): use pipes instead of the ugly wrapper here once they