1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-07-28 02:07:07 +01:00

consistency of tests

This commit is contained in:
Guido Cossu
2016-12-13 02:24:20 +00:00
parent 7bc2065113
commit ef72f322d2
4 changed files with 80 additions and 19 deletions

View File

@@ -28,10 +28,14 @@
*************************************************************************************/
/* END LEGAL */
#include <Grid.h>
#include <ctype.h>
using namespace Grid;
using namespace std;
#define GRID_TEXT_INDENT 2 //number of spaces for indentation of levels
// Writer implementation ///////////////////////////////////////////////////////
TextWriter::TextWriter(const string &fileName)
: file_(fileName, ios::out)
@@ -50,9 +54,8 @@ void TextWriter::pop(void)
void TextWriter::indent(void)
{
for (int i = 0; i < level_; ++i)
{
file_ << '\t';//is this portable?
}
for (int t = 0; t < GRID_TEXT_INDENT; t++)
file_ << ' ';
};
// Reader implementation ///////////////////////////////////////////////////////
@@ -61,7 +64,7 @@ TextReader::TextReader(const string &fileName)
file_.open(fileName, ios::in);
if (!file_.is_open()) {
std::cout << GridLogMessage << "TextReader: Error opening file " << fileName << std::endl;
exit(0);// write better error handling
exit(1);// write better error handling
}
}
@@ -81,12 +84,15 @@ void TextReader::checkIndent(void)
for (int i = 0; i < level_; ++i)
{
bool check = true;
for (int t = 0; t< GRID_TEXT_INDENT; t++){
file_.get(c);
if (c != '\t')
check = check && isspace(c);
}
if (!check)
{
cerr << "TextReader: mismatch on tab " << c << " level " << level_;
cerr << " i "<< i << endl;
abort();
cerr << "TextReader: mismatch on level " << level_ << std::endl;
exit(1);
}
}
}

49
lib/supported_compilers.h Normal file
View File

@@ -0,0 +1,49 @@
/*************************************************************************************
Grid physics library, www.github.com/paboyle/Grid
Source file: ./lib/supported_compilers.h
Copyright (C) 2016
Author: Guido Cossu <guido.cossu@ed.ac.uk>
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.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
See the full license in the file "LICENSE" in the top level distribution directory
*************************************************************************************/
/* END LEGAL */
#ifndef COMPILER_CHECK_H
#define COMPILER_CHECK_H
// exclude unsupported compilers
#if defined(__clang__)
#define CLANG_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__)
#if CLANG_VERSION < 30800
#error "unsupported Clang version"
#endif
#elif defined(__GNUC__)
#define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
#if GCC_VERSION < 40800
#error "unsupported GCC version"
#endif
#endif
#endif