mirror of https://github.com/Jittor/Jittor
33 lines
728 B
C++
33 lines
728 B
C++
// ***************************************************************
|
|
// Copyright (c) 2021 Jittor. All Rights Reserved.
|
|
// Maintainers: Dun Liang <randonlang@gmail.com>.
|
|
// This file is subject to the terms and conditions defined in
|
|
// file 'LICENSE.txt', which is part of this source code package.
|
|
// ***************************************************************
|
|
#pragma once
|
|
#include <functional>
|
|
|
|
using namespace std;
|
|
|
|
void test_main();
|
|
|
|
void on_error() {
|
|
throw std::exception();
|
|
}
|
|
|
|
void expect_error(function<void()> func) {
|
|
try {
|
|
func();
|
|
} catch (...) {
|
|
return;
|
|
}
|
|
CHECK(0) << "Missing error";
|
|
}
|
|
|
|
int main() {
|
|
try {
|
|
test_main();
|
|
} catch (...) {
|
|
return 1;
|
|
}
|
|
} |