Context |
Check |
Description |
ltpci/debian_stable_s390x-linux-gnu-gcc_s390x |
success
|
success
|
ltpci/debian_stable_aarch64-linux-gnu-gcc_arm64 |
success
|
success
|
ltpci/debian_stable_powerpc64le-linux-gnu-gcc_ppc64el |
success
|
success
|
ltpci/debian_stable_gcc |
success
|
success
|
ltpci/quay-io-centos-centos_stream9_gcc |
success
|
success
|
ltpci/ubuntu_jammy_gcc |
success
|
success
|
ltpci/debian_oldstable_clang |
success
|
success
|
ltpci/debian_testing_gcc |
success
|
success
|
ltpci/opensuse-archive_42-2_gcc |
success
|
success
|
ltpci/debian_stable_gcc |
success
|
success
|
ltpci/ubuntu_bionic_gcc |
success
|
success
|
ltpci/opensuse-leap_latest_gcc |
success
|
success
|
ltpci/fedora_latest_clang |
success
|
success
|
ltpci/debian_testing_clang |
success
|
success
|
ltpci/alpine_latest_gcc |
success
|
success
|
ltpci/debian_oldstable_gcc |
success
|
success
|
@@ -55,7 +55,7 @@ const char *TCID __attribute__((weak));
struct tst_test *tst_test;
-static const char *tid;
+static const char *tcid;
static int iterations = 1;
static float duration = -1;
static float timeout_mul = -1;
@@ -106,7 +106,7 @@ static void setup_ipc(void)
if (access("/dev/shm", F_OK) == 0) {
snprintf(shm_path, sizeof(shm_path), "/dev/shm/ltp_%s_%d",
- tid, getpid());
+ tcid, getpid());
} else {
char *tmpdir;
@@ -115,7 +115,7 @@ static void setup_ipc(void)
tmpdir = tst_get_tmpdir();
snprintf(shm_path, sizeof(shm_path), "%s/ltp_%s_%d",
- tmpdir, tid, getpid());
+ tmpdir, tcid, getpid());
free(tmpdir);
}
@@ -1048,7 +1048,7 @@ static void copy_resources(void)
TST_RESOURCE_COPY(NULL, tst_test->resource_files[i], NULL);
}
-static const char *get_tid(char *argv[])
+static const char *get_tcid(char *argv[])
{
char *p;
@@ -1146,7 +1146,7 @@ int tst_creat_unlinked(const char *path, int flags, mode_t mode)
int start[3] = {'0', 'a', 'A'};
snprintf(template, PATH_MAX, "%s/ltp_%.3sXXXXXX",
- path, tid);
+ path, tcid);
len = strlen(template) - 1;
while (template[len] == 'X') {
@@ -1318,7 +1318,7 @@ static void do_setup(int argc, char *argv[])
assert_test_fn();
- TCID = tid = get_tid(argv);
+ TCID = tcid = get_tcid(argv);
if (tst_test->sample)
tst_test = tst_timer_test_setup(tst_test);