• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2022 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include <search.h>
17 #include "functionalext.h"
18 
19 const size_t SIZE = 2;
20 
21 /**
22  * @tc.name      : hcreate_r_0100
23  * @tc.desc      : Verify hcreate_r process success
24  * @tc.level     : Level 0
25  */
hcreate_r_0100(void)26 void hcreate_r_0100(void)
27 {
28     struct hsearch_data h_data = {};
29     int ret;
30     EXPECT_NE("hcreate_r_0100", hcreate_r(SIZE, &h_data), 0);
31     hdestroy_r(&h_data);
32 }
33 
34 /**
35  * @tc.name      : hcreate_r_0200
36  * @tc.desc      : Verify hcreate_r process fail
37  * @tc.level     : Level 2
38  */
hcreate_r_0200(void)39 void hcreate_r_0200(void)
40 {
41     struct hsearch_data h_data = {};
42     EXPECT_EQ("hcreate_r_0200", hcreate_r(-1, &h_data), 0);
43 }
44 
main(void)45 int main(void)
46 {
47     hcreate_r_0100();
48     hcreate_r_0200();
49     return t_status;
50 }
51