yaze 0.2.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
yaze_test.cc
Go to the documentation of this file.
1#define SDL_MAIN_HANDLED
2
3#include <gtest/gtest.h>
4
5#include "absl/debugging/failure_signal_handler.h"
6#include "absl/debugging/symbolize.h"
8
9int main(int argc, char* argv[]) {
10 absl::InitializeSymbolizer(argv[0]);
11
12 absl::FailureSignalHandlerOptions options;
13 absl::InstallFailureSignalHandler(options);
14
15 if (argc > 1 && std::string(argv[1]) == "integration") {
17 } else if (argc > 1 && std::string(argv[1]) == "room_object") {
18 ::testing::InitGoogleTest(&argc, argv);
19 if (!RUN_ALL_TESTS()) {
21 }
22 }
23
24 ::testing::InitGoogleTest(&argc, argv);
25 return RUN_ALL_TESTS();
26}
int main(int argc, char *argv[])
Definition yaze_test.cc:9