OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [host/] [tools/] [ecostest/] [common/] [eCosTestUtils.h] - Rev 790

Go to most recent revision | Compare with Previous | Blame | View Log

// ####ECOSHOSTGPLCOPYRIGHTBEGIN####                                        
// -------------------------------------------                              
// This file is part of the eCos host tools.                                
// Copyright (C) 1998, 1999, 2000, 2006 Free Software Foundation, Inc.      
//
// 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 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., 51 Franklin Street,                      
// Fifth Floor, Boston, MA  02110-1301, USA.                                
// -------------------------------------------                              
// ####ECOSHOSTGPLCOPYRIGHTEND####                                          
//=================================================================
//
//        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
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.