blob: 97a5299428010f526f638d8a4faee0737bb73383 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
/*
* tests/de_tier_tag.cpp
*
* Unit tests for Dynamic Extension Framework
*
* Copyright (C) 2023 Douglas Rumbaugh <drumbaugh@psu.edu>
* Dong Xie <dongx@psu.edu>
*
* Distributed under the Modified BSD License.
*
*/
#include <set>
#include <random>
#include <algorithm>
#include "include/testing.h"
#include "framework/DynamicExtension.h"
#include "framework/scheduling/SerialScheduler.h"
#include "shard/ISAMTree.h"
#include "query/rangequery.h"
#include <check.h>
using namespace de;
typedef Rec R;
typedef ISAMTree<R> S;
typedef rq::Query<S> Q;
typedef DynamicExtension<S, Q, LayoutPolicy::TEIRING, DeletePolicy::TAGGING, SerialScheduler> DE;
#include "include/dynamic_extension.h"
Suite *unit_testing()
{
Suite *unit = suite_create("DynamicExtension: Tagged Tiering Testing");
inject_dynamic_extension_tests(unit);
return unit;
}
int shard_unit_tests()
{
int failed = 0;
Suite *unit = unit_testing();
SRunner *unit_shardner = srunner_create(unit);
srunner_run_all(unit_shardner, CK_NORMAL);
failed = srunner_ntests_failed(unit_shardner);
srunner_free(unit_shardner);
return failed;
}
int main()
{
int unit_failed = shard_unit_tests();
return (unit_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}
|