forked from OSchip/llvm-project
19 lines
393 B
C++
19 lines
393 B
C++
#ifndef FORTRAN_TEST_RUNTIME_TESTING_H_
|
|
#define FORTRAN_TEST_RUNTIME_TESTING_H_
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
#include <cstddef>
|
|
|
|
namespace llvm {
|
|
class raw_ostream;
|
|
}
|
|
|
|
void StartTests();
|
|
llvm::raw_ostream &Fail();
|
|
int EndTests();
|
|
|
|
// Defines a CHARACTER object with padding when needed
|
|
void SetCharacter(char *, std::size_t, const char *);
|
|
|
|
#endif // FORTRAN_TEST_RUNTIME_TESTING_H_
|