⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ecostestutils.h

📁 基于ecos的redboot
💻 H
字号:
//####COPYRIGHTBEGIN####
//                                                                          
// ----------------------------------------------------------------------------
// Copyright (C) 1998, 1999, 2000 Red Hat, Inc.
//
// This program is part of the eCos host tools.
//
// This program is free software; you can redistribute it and/or modify it 
// under the terms of the GNU General Public License as published by the Free 
// Software Foundation; either version 2 of the License, or (at your option) 
// any later version.
// 
// This program is distributed in the hope that it will be useful, but WITHOUT 
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for 
// more details.
// 
// You should have received a copy of the GNU General Public License along with
// this program; if not, write to the Free Software Foundation, Inc., 
// 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
//
// ----------------------------------------------------------------------------
//                                                                          
//####COPYRIGHTEND####
//=================================================================
//
//        eCosTestUtils.h
//
//        run test program
//
//=================================================================
//=================================================================
//#####DESCRIPTIONBEGIN####
//
// Author(s):     sdf
// Contributors:  sdf
// Date:          1999-04-01
// Description:   Utiltities for test infra
// Usage:
//
//####DESCRIPTIONEND####

#ifndef _ECOSTESTUTILS_H
#define _ECOSTESTUTILS_H

#include "eCosStd.h"
#include "Collections.h"

//=================================================================
// Various bits and pieces live here
//=================================================================

class CeCosTestUtils {
public:

	static bool CommandLine (int &argc,TCHAR **argv,bool bRequireResourceServer=true); // Parse the command line and extract the common options "-v", "-o", ....
	static void UsageMessage(bool bRequireResourceServer=true); // Output a usage message explaining the above
  
  // Find the tail of a filename
  static LPCTSTR  const Tail (LPCTSTR  const pszFile); // Tail of a filename, in the UNIX sense

  // File exists?
  static bool Exists (LPCTSTR pszFile);
  // And is a file? (as opposed to a directory)
  static bool IsFile (LPCTSTR pszFile);

  // File iterator.  Gets next file in directory, avoiding "." and ".."
  static bool NextFile (void *&pHandle,String &str);
  // Start file iteration and return first file.
  static bool StartSearch (void *&pHandle,String &str);
  // End file iteration
  static void EndSearch (void *&pHandle);

  // Get the file name of a "home directory" file
  static const String HomeFile (LPCTSTR pszFile);

protected:
  
};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -