/* * Copyright (c) 2022 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "test.h" const char *path = "/data"; void handler(int sig) { exit(t_status); } /** * @tc.name : telldir_0100 * @tc.desc : Get the current read position of the parameter dir directory stream * @tc.level : Level 0 */ void telldir_0100(void) { DIR *dir; struct dirent *ptr; int counter = 0; dir = opendir(path); long offset1 = telldir(dir); long offset2 = 0; while ((ptr = readdir(dir)) != NULL) { counter++; if (counter > 1) { offset2 = telldir(dir); break; } } if (offset1 == offset2) { t_error("%s offset2 invalid", __func__); } closedir(dir); } /** * @tc.name : telldir_0200 * @tc.desc : Catch exception when parameter dir is NULL * @tc.level : Level 2 */ void telldir_0200(void) { signal(SIGSEGV, handler); DIR *dir = NULL; telldir(dir); } int main(int argc, char *argv[]) { telldir_0100(); telldir_0200(); return t_status; }