コード例 #1
0
ファイル: macsio_test_base.py プロジェクト: zzh-wisdom/daos
    def get_macsio_command(self):
        """Get the MacsioCommand object.

        Returns:
            MacsioCommand: object defining the macsio command

        """
        # Create the macsio command
        path = self.params.get("macsio_path", default="")
        macsio = MacsioCommand(path)
        macsio.get_params(self)
        # Create all the macsio output files in the same directory as the other
        # test log files
        macsio.set_output_file_path()

        return macsio
コード例 #2
0
ファイル: macsio_test_base.py プロジェクト: yanqiang-ux/daos
    def get_macsio_command(self):
        """Get the MacsioCommand object.

        Returns:
            MacsioCommand: object defining the macsio command

        """
        # Create the macsio command
        test_repo = self.params.get("macsio", "/run/test_repo/*", "")
        macsio = MacsioCommand(test_repo)
        macsio.get_params(self)

        # Create all the macsio output files in the same directory as the other
        # test log files
        macsio.set_output_file_path()

        return macsio