예제 #1
0
파일: ion.py 프로젝트: jasons-psc/slash2
def launch_ion(tsuite):
  """Launch ION daemons.

  Args:
    tsuite: tsuite runtime."""

  gdbcmd_path = tsuite.conf["slash2"]["ion_gdb"]
  sl2gen.launch_gdb_sl(tsuite, "ion", tsuite.sl2objects["ion"], "sliod", gdbcmd_path)
예제 #2
0
def launch_ion(tsuite):
    """Launch ION daemons.

  Args:
    tsuite: tsuite runtime."""

    gdbcmd_path = tsuite.conf["slash2"]["ion_gdb"]
    sl2gen.launch_gdb_sl(tsuite, "ion", tsuite.sl2objects["ion"], "sliod",
                         gdbcmd_path)
예제 #3
0
def launch_mds(tsuite):
    """Launch MDS/slashd daemons."""

    gdbcmd_path = tsuite.conf["slash2"]["mds_gdb"]
    sl2gen.launch_gdb_sl(tsuite, "mds", tsuite.sl2objects["mds"], "slashd",
                         gdbcmd_path)
예제 #4
0
def launch_mnt(tsuite):
  """Launch mount slash."""

  gdbcmd_path = tsuite.conf["slash2"]["mnt_gdb"]
  sl2gen.launch_gdb_sl(tsuite, "client", tsuite.sl2objects["client"], "mount_slash", gdbcmd_path)
예제 #5
0
파일: mds.py 프로젝트: jasons-psc/slash2
def launch_mds(tsuite):
  """Launch MDS/slashd daemons."""

  gdbcmd_path = tsuite.conf["slash2"]["mds_gdb"]
  sl2gen.launch_gdb_sl(tsuite, "mds", tsuite.sl2objects["mds"], "slashd", gdbcmd_path)