General Purpose library for Freestanding C++ and POSIX systems
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.
|
#include "test_scaffold.h"
|
|
|
|
struct meta_test : public test_scaffold {
|
|
meta_test() {
|
|
name = __FILE__ ":1";
|
|
}
|
|
|
|
virtual int run() {
|
|
return 0;
|
|
}
|
|
};
|
|
|
|
struct meta_test2 : public test_scaffold {
|
|
meta_test2() {
|
|
name = __FILE__ ":2";
|
|
}
|
|
|
|
class carrot{};
|
|
|
|
virtual int run() {
|
|
// throw carrot{};
|
|
return 0;
|
|
}
|
|
};
|
|
|
|
append_test dummy_r3436r43(new meta_test{});
|
|
append_test dummy_dfh486df(new meta_test2{});
|