From 11d8084363b250c25f246fa644048ebe181ec8df Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Tue, 13 Nov 2012 18:38:33 -0800 Subject: [PATCH] spsc-bugfree: make Relacy run exhaustive, fair scheduler --- spsc-bugfix/spsc-relacy.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spsc-bugfix/spsc-relacy.cc b/spsc-bugfix/spsc-relacy.cc index 37ed989..8d4ad3b 100644 --- a/spsc-bugfix/spsc-relacy.cc +++ b/spsc-bugfix/spsc-relacy.cc @@ -23,5 +23,7 @@ struct spsc_queue_test : rl::test_suite int main() { - rl::simulate(); + rl::test_params params; + params.search_type = rl::fair_full_search_scheduler_type; + rl::simulate(params); } -- 2.34.1