mirror of
https://github.com/open-goal/jak-project
synced 2026-06-07 12:07:48 -04:00
[jak2] goalc supports multiple projects (#1619)
* [jak2] goalc supports multiple projects * disable deci2 server if not debugging
This commit is contained in:
@@ -33,8 +33,8 @@ void connect_compiler_and_debugger(Compiler& compiler, bool do_break) {
|
||||
}
|
||||
}
|
||||
} // namespace
|
||||
TEST(Debugger, DebuggerBasicConnect) {
|
||||
Compiler compiler;
|
||||
TEST(Jak1Debugger, DebuggerBasicConnect) {
|
||||
Compiler compiler(GameVersion::Jak1);
|
||||
// evidently you can't ptrace threads in your own process, so we need to run the runtime in a
|
||||
// separate process.
|
||||
if (!fork()) {
|
||||
@@ -50,8 +50,8 @@ TEST(Debugger, DebuggerBasicConnect) {
|
||||
}
|
||||
}
|
||||
|
||||
TEST(Debugger, DebuggerBreakAndContinue) {
|
||||
Compiler compiler;
|
||||
TEST(Jak1Debugger, DebuggerBreakAndContinue) {
|
||||
Compiler compiler(GameVersion::Jak1);
|
||||
// evidently you can't ptrace threads in your own process, so we need to run the runtime in a
|
||||
// separate process.
|
||||
if (!fork()) {
|
||||
@@ -72,8 +72,8 @@ TEST(Debugger, DebuggerBreakAndContinue) {
|
||||
}
|
||||
}
|
||||
|
||||
TEST(Debugger, DebuggerReadMemory) {
|
||||
Compiler compiler;
|
||||
TEST(Jak1Debugger, DebuggerReadMemory) {
|
||||
Compiler compiler(GameVersion::Jak1);
|
||||
// evidently you can't ptrace threads in your own process, so we need to run the runtime in a
|
||||
// separate process.
|
||||
if (!fork()) {
|
||||
@@ -96,8 +96,8 @@ TEST(Debugger, DebuggerReadMemory) {
|
||||
}
|
||||
}
|
||||
|
||||
TEST(Debugger, DebuggerWriteMemory) {
|
||||
Compiler compiler;
|
||||
TEST(Jak1Debugger, DebuggerWriteMemory) {
|
||||
Compiler compiler(GameVersion::Jak1);
|
||||
// evidently you can't ptrace threads in your own process, so we need to run the runtime in a
|
||||
// separate process.
|
||||
if (!fork()) {
|
||||
@@ -127,8 +127,8 @@ TEST(Debugger, DebuggerWriteMemory) {
|
||||
}
|
||||
}
|
||||
|
||||
TEST(Debugger, Symbol) {
|
||||
Compiler compiler;
|
||||
TEST(Jak1Debugger, Symbol) {
|
||||
Compiler compiler(GameVersion::Jak1);
|
||||
// evidently you can't ptrace threads in your own process, so we need to run the runtime in a
|
||||
// separate process.
|
||||
if (!fork()) {
|
||||
@@ -158,8 +158,8 @@ TEST(Debugger, Symbol) {
|
||||
}
|
||||
}
|
||||
|
||||
TEST(Debugger, SimpleBreakpoint) {
|
||||
Compiler compiler;
|
||||
TEST(Jak1Debugger, SimpleBreakpoint) {
|
||||
Compiler compiler(GameVersion::Jak1);
|
||||
|
||||
if (!fork()) {
|
||||
GoalTest::runtime_no_kernel();
|
||||
|
||||
Reference in New Issue
Block a user