-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests/coro-gc: create test for boehm stack patch
Regression test for #7679
- Loading branch information
Showing
2 changed files
with
100 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
#include <gtest/gtest.h> | ||
#if HAVE_BOEHMGC | ||
#include <gc/gc.h> | ||
#endif | ||
|
||
#include "eval.hh" | ||
#include "serialise.hh" | ||
|
||
|
||
#define guard_gc(x) GC_register_finalizer((void*)x, finalizer, x##_collected, nullptr, nullptr) | ||
|
||
|
||
namespace nix { | ||
#if HAVE_BOEHMGC | ||
static bool* uncollectable_bool() { | ||
bool* res = (bool*)GC_MALLOC_UNCOLLECTABLE(1); | ||
*res = false; | ||
return res; | ||
} | ||
|
||
static void finalizer(void *obj, void *data) { | ||
//printf("finalizer: obj %p data %p\n", obj, data); | ||
*((bool*)data) = true; | ||
} | ||
|
||
// Generate 2 objects, discard one, run gc, | ||
// see if one got collected and the other didn't | ||
static void testFinalizerCalls() { | ||
bool* do_collect_collected = uncollectable_bool(); | ||
bool* dont_collect_collected = uncollectable_bool(); | ||
{ | ||
volatile void* do_collect = GC_MALLOC_ATOMIC(128); | ||
guard_gc(do_collect); | ||
} | ||
volatile void* dont_collect = GC_MALLOC_ATOMIC(128); | ||
guard_gc(dont_collect); | ||
GC_gcollect(); | ||
GC_invoke_finalizers(); | ||
|
||
ASSERT_TRUE(*do_collect_collected); | ||
ASSERT_FALSE(*dont_collect_collected); | ||
ASSERT_NE(nullptr, dont_collect); | ||
} | ||
|
||
// This test tests that boehm handles coroutine stacks correctly | ||
TEST(CoroGC, CoroutineStackNotGCd) { | ||
initGC(); | ||
testFinalizerCalls(); | ||
|
||
bool* dont_collect_collected = uncollectable_bool(); | ||
bool* do_collect_collected = uncollectable_bool(); | ||
|
||
volatile void* dont_collect = GC_MALLOC_ATOMIC(128); | ||
guard_gc(dont_collect); | ||
{ | ||
volatile void* do_collect = GC_MALLOC_ATOMIC(128); | ||
guard_gc(do_collect); | ||
} | ||
|
||
auto source = sinkToSource([&](Sink& sink) { | ||
testFinalizerCalls(); | ||
|
||
bool* dont_collect_inner_collected = uncollectable_bool(); | ||
bool* do_collect_inner_collected = uncollectable_bool(); | ||
|
||
volatile void* dont_collect_inner = GC_MALLOC_ATOMIC(128); | ||
guard_gc(dont_collect_inner); | ||
{ | ||
volatile void* do_collect_inner = GC_MALLOC_ATOMIC(128); | ||
guard_gc(do_collect_inner); | ||
} | ||
// pass control to main | ||
writeString("foo", sink); | ||
|
||
ASSERT_TRUE(*do_collect_inner_collected); | ||
ASSERT_FALSE(*dont_collect_inner_collected); | ||
ASSERT_NE(nullptr, dont_collect_inner); | ||
|
||
// pass control to main | ||
writeString("bar", sink); | ||
}); | ||
|
||
// pass control to coroutine | ||
std::string foo = readString(*source); | ||
ASSERT_EQ(foo, "foo"); | ||
|
||
GC_gcollect(); | ||
GC_invoke_finalizers(); | ||
|
||
// pass control to coroutine | ||
std::string bar = readString(*source); | ||
ASSERT_EQ(bar, "bar"); | ||
|
||
ASSERT_FALSE(*dont_collect_collected); | ||
ASSERT_TRUE(*do_collect_collected); | ||
ASSERT_NE(nullptr, dont_collect); | ||
} | ||
#endif | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters