You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
393 B
19 lines
393 B
#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_
|