1 /* 2 * Copyright (c) 2025 Tenstorrent AI ULC 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <unistd.h> 8 9 #include <zephyr/ztest.h> 10 ZTEST(posix_multi_process,test_getpid)11ZTEST(posix_multi_process, test_getpid) 12 { 13 pid_t pid = getpid(); 14 15 zexpect_true(pid > 0, "invalid pid: %d", pid); 16 } 17