diff options
| author | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2023-10-31 11:55:36 -0400 |
|---|---|---|
| committer | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2023-10-31 11:55:36 -0400 |
| commit | 5f5eccdac3fd600e4d0d23db39b7c816206fdfe5 (patch) | |
| tree | 7d788c681fc30cee95c48e470a76f3a2b33aa326 /tests/de_tier_tag.cpp | |
| parent | df59a313ae18a6968daa2662dc39a8065d92cfcb (diff) | |
| download | dynamic-extension-5f5eccdac3fd600e4d0d23db39b7c816206fdfe5.tar.gz | |
DE Tests: updated existing tests to use single threaded operation
Diffstat (limited to 'tests/de_tier_tag.cpp')
| -rw-r--r-- | tests/de_tier_tag.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/de_tier_tag.cpp b/tests/de_tier_tag.cpp index 9b6b5a4..2c263eb 100644 --- a/tests/de_tier_tag.cpp +++ b/tests/de_tier_tag.cpp @@ -15,11 +15,12 @@ #include "testing.h" #include "framework/DynamicExtension.h" +#include "framework/scheduling/SerialScheduler.h" #include "shard/WIRS.h" #include <check.h> using namespace de; -typedef DynamicExtension<WRec, WIRS<WRec>, WIRSQuery<WRec>, LayoutPolicy::TEIRING, DeletePolicy::TAGGING> DE; +typedef DynamicExtension<WRec, WIRS<WRec>, WIRSQuery<WRec>, LayoutPolicy::TEIRING, DeletePolicy::TAGGING, SerialScheduler> DE; #include "dynamic_extension_tests.inc" |