Home
last modified time | relevance | path

Searched refs:TMP_DIR (Results 1 – 6 of 6) sorted by relevance

/linux/scripts/livepatch/
H A Dklp-build29 # Avoid removing the previous $TMP_DIR until args have been fully processed.
38 TMP_DIR="$PWD/klp-tmp"
40 ORIG_DIR="$TMP_DIR/1-orig"
41 PATCHED_DIR="$TMP_DIR/2-patched"
42 ORIG_CSUM_DIR="$TMP_DIR/3-checksum-orig"
43 PATCHED_CSUM_DIR="$TMP_DIR/3-checksum-patched"
44 DIFF_DIR="$TMP_DIR/4-diff"
45 KMOD_DIR="$TMP_DIR/5-kmod"
47 STASH_DIR="$TMP_DIR/stash"
48 TIMESTAMP="$TMP_DIR/timestam
[all...]
/linux/scripts/
H A Dcheck-uapi.sh216 | (cd "$TMP_DIR" && tar xf -)
218 cd "${TMP_DIR}/${ref}-archive"
235 printf "%s" "${TMP_DIR}/${ref}/usr"
284 done < <(find "$TMP_DIR" -type f -name '*.error' | sort)
328 local -r log="${TMP_DIR}/log/${file}.log"
329 local -r error_log="${TMP_DIR}/log/${file}.error"
507 TMP_DIR=$(mktemp -d)
508 readonly TMP_DIR
509 trap 'rm -rf "$TMP_DIR"' EXIT
511 readonly INCOMPAT_LIST="${TMP_DIR}/incompat_lis
[all...]
/linux/tools/testing/selftests/filesystems/fat/
H A Drun_fat_tests.sh15 TMP_DIR="$(mktemp -d /tmp/fat_tests_tmp.XXXXXX)"
16 IMG_PATH="${TMP_DIR}/fat.img"
17 MNT_PATH="${TMP_DIR}/mnt"
22 rm -rf "${TMP_DIR}"
/linux/tools/testing/selftests/landlock/
H A Dfs_test.c80 static const char dir_s1d1[] = TMP_DIR "/s1d1";
81 static const char file1_s1d1[] = TMP_DIR "/s1d1/f1";
82 static const char file2_s1d1[] = TMP_DIR "/s1d1/f2";
83 static const char dir_s1d2[] = TMP_DIR "/s1d1/s1d2";
84 static const char file1_s1d2[] = TMP_DIR "/s1d1/s1d2/f1";
85 static const char file2_s1d2[] = TMP_DIR "/s1d1/s1d2/f2";
86 static const char dir_s1d3[] = TMP_DIR "/s1d1/s1d2/s1d3";
87 static const char file1_s1d3[] = TMP_DIR "/s1d1/s1d2/s1d3/f1";
88 static const char file2_s1d3[] = TMP_DIR "/s1d1/s1d2/s1d3/f2";
90 static const char dir_s2d1[] = TMP_DIR "/s2d
[all...]
H A Dscoped_abstract_unix_test.c798 static const char stream_path[] = TMP_DIR "/stream.sock"; in TEST_F()
799 static const char dgram_path[] = TMP_DIR "/dgram.sock"; in TEST_F()
833 ASSERT_EQ(0, mkdir(TMP_DIR, 0700)); in TEST_F()
840 EXPECT_EQ(0, rmdir(TMP_DIR)); in TEST_F()
H A Dcommon.h23 #define TMP_DIR "tmp" macro