Remove unused Debug header.

This commit is contained in:
Kyle Isom 2023-10-21 12:34:38 -07:00
parent aee337f2e9
commit 0bf4dd54f3
2 changed files with 0 additions and 58 deletions

View File

@ -58,7 +58,6 @@ set(HEADER_FILES
include/sctest/sctest.h
include/sctest/Assert.h
include/sctest/Checks.h
include/sctest/Debug.h
include/sctest/Exceptions.h
include/sctest/Report.h
include/sctest/SimpleSuite.h

View File

@ -1,57 +0,0 @@
//
// Project: scccl
// File: include/test/debug.h
// Author: Kyle Isom
// Date: 2017-06-05
// Namespace: test
//
// debug.h defines assertions and other debugging functions.
//
// Copyright 2017 Kyle Isom <kyle@imap.cc>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#if 0
// Disabled for now.
#pragma once
#include <iostream>
#ifndef NDEBUG
#include <cstdlib>
#endif
namespace test {
// GenerateCoreDumps should be set at the beginning of the program, before
// multithreading. It is *not* threadsafe.
static bool GenerateCoreDumps = false;
static void
Assert(bool cond) {
#ifdef NDEBUG
std::cout << "Not a debug build, skipping assertion." << std::endl;
return;
#endif
if (!cond) {
std::cerr << "Assertion failed in " << __func__ << "(" << __FILE__ << ":" << __LINE__ << ")" << std::endl;
if (GenerateCoreDumps) {
std::abort();
}
else {
std::exit(1);
}
}
}
}
#endif